summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/recipetool.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/recipetool.py')
-rw-r--r--meta/lib/oeqa/selftest/recipetool.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/recipetool.py b/meta/lib/oeqa/selftest/recipetool.py
index 689d41b740..c34ad68870 100644
--- a/meta/lib/oeqa/selftest/recipetool.py
+++ b/meta/lib/oeqa/selftest/recipetool.py
@@ -282,7 +282,7 @@ class RecipetoolTests(RecipetoolBase):
282 self.assertIn('add-file.patch', line, 'Unexpected warning found in output:\n%s' % line) 282 self.assertIn('add-file.patch', line, 'Unexpected warning found in output:\n%s' % line)
283 break 283 break
284 else: 284 else:
285 self.assertTrue(False, 'Patch warning not found in output:\n%s' % output) 285 self.fail('Patch warning not found in output:\n%s' % output)
286 286
287 @testcase(1188) 287 @testcase(1188)
288 def test_recipetool_appendfile_script(self): 288 def test_recipetool_appendfile_script(self):
@@ -351,7 +351,7 @@ class RecipetoolTests(RecipetoolBase):
351 bbappendfile = f 351 bbappendfile = f
352 break 352 break
353 if not bbappendfile: 353 if not bbappendfile:
354 self.assertTrue(False, 'No bbappend file created') 354 self.fail('No bbappend file created')
355 runCmd('rm -rf %s/recipes-*' % self.templayerdir) 355 runCmd('rm -rf %s/recipes-*' % self.templayerdir)
356 return bbappendfile 356 return bbappendfile
357 357