summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/toastergui/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/tests.py b/bitbake/lib/toaster/toastergui/tests.py
index 722b383509..31f1431ea3 100644
--- a/bitbake/lib/toaster/toastergui/tests.py
+++ b/bitbake/lib/toaster/toastergui/tests.py
@@ -304,7 +304,7 @@ class ViewTests(TestCase):
304 """Download the recipe file generated for the custom image""" 304 """Download the recipe file generated for the custom image"""
305 305
306 # Create a dummy recipe file for the custom image generation to read 306 # Create a dummy recipe file for the custom image generation to read
307 open("/tmp/a_recipe.bb", 'wa').close() 307 open("/tmp/a_recipe.bb", 'a').close()
308 response = self.client.get(reverse('customrecipedownload', 308 response = self.client.get(reverse('customrecipedownload',
309 args=(self.project.id, 309 args=(self.project.id,
310 self.customr.id))) 310 self.customr.id)))