fix output check in tests

This commit is contained in:
Alex Groce
2019-01-03 12:58:42 -07:00
parent 3133540027
commit 63952ff067
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ class CrashTest(deepstate_base.DeepStateTestCase):
self.assertTrue("Passed: Crash_SegFault" in output)
foundCrashSave = False
for line in output.split("\n"):
if ("Saving input to" in line) and (".crash" in line):
if ("Saved test case" in line) and (".crash" in line):
foundCrashSave = True
self.assertTrue(foundCrashSave)
+1 -1
View File
@@ -15,6 +15,6 @@ class TakeOverTest(deepstate_base.DeepStateTestCase):
foundPassSave = False
for line in output.split("\n"):
if ("Saving input to" in line) and (".pass" in line):
if ("Saved test case" in line) and (".pass" in line):
foundPassSave = True
self.assertTrue(foundPassSave)