Bug 863091 - Followup: Fix test to expect correct return code after clobber

CLOSED TREE
This commit is contained in:
Ed Morley 2013-04-25 14:43:53 +01:00
parent c9e5458838
commit 541c2de1f0

View File

@ -204,7 +204,7 @@ class TestClobberer(unittest.TestCase):
s = StringIO()
status = clobber([topsrcdir, topobjdir], env, os.getcwd(), s)
self.assertEqual(status, 1)
self.assertEqual(status, 0)
self.assertIn('Successfully completed auto clobber', s.getvalue())
self.assertFalse(os.path.exists(dummy_file))