summaryrefslogtreecommitdiffstats
path: root/test/option/tree-lib.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/option/tree-lib.py')
-rw-r--r--test/option/tree-lib.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/option/tree-lib.py b/test/option/tree-lib.py
index 8858b74..d1fdcd2 100644
--- a/test/option/tree-lib.py
+++ b/test/option/tree-lib.py
@@ -33,7 +33,6 @@ on disk.)
Issue 1363: http://scons.tigris.org/issues/show_bug.cgi?id=1363
"""
-import string
import sys
import TestSCons
@@ -78,10 +77,7 @@ expect = """
"""
test.run(arguments = '--tree=derived foo.h')
-if string.find(test.stdout(), expect) == -1:
- sys.stdout.write('Did not find expected tree in the following output:\n')
- sys.stdout.write(test.stdout())
- test.fail_test()
+test.must_contain_all_lines(test.stdout(), [expect])
test.up_to_date(arguments = 'foo.h')