diff options
Diffstat (limited to 'test/option/debug-pdb.py')
-rw-r--r-- | test/option/debug-pdb.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/option/debug-pdb.py b/test/option/debug-pdb.py index fa703d5..bd79d7f 100644 --- a/test/option/debug-pdb.py +++ b/test/option/debug-pdb.py @@ -24,8 +24,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" -import string - import TestSCons test = TestSCons.TestSCons() @@ -35,7 +33,6 @@ env = Environment() """) test.run(arguments = "--debug=pdb", stdin = "n\ns\nq\n") -test.fail_test(string.find(test.stdout(), "(Pdb)") == -1) -test.fail_test(string.find(test.stdout(), "SCons") == -1) +test.must_contain_all_lines(test.stdout(), ["(Pdb)", "SCons"]) test.pass_test() |