diff options
Diffstat (limited to 'test/scons-time/help')
-rw-r--r-- | test/scons-time/help/all-subcommands.py | 2 | ||||
-rw-r--r-- | test/scons-time/help/options.py | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/test/scons-time/help/all-subcommands.py b/test/scons-time/help/all-subcommands.py index 6fa0fac..52842ab 100644 --- a/test/scons-time/help/all-subcommands.py +++ b/test/scons-time/help/all-subcommands.py @@ -53,6 +53,6 @@ expect = map(lambda x: ' %s ' % x, subcommands) test.run(arguments = 'help') -test.must_contain_all_lines('Standard output', test.stdout(), expect) +test.must_contain_all_lines(test.stdout(), expect) test.pass_test() diff --git a/test/scons-time/help/options.py b/test/scons-time/help/options.py index 942dfa6..43f4427 100644 --- a/test/scons-time/help/options.py +++ b/test/scons-time/help/options.py @@ -42,18 +42,18 @@ expect = [ test.run(arguments = 'help') -test.must_contain_all_lines('Standard output', test.stdout(), expect) +test.must_contain_all_lines(test.stdout(), expect) test.run(arguments = '-h') -test.must_contain_all_lines('Standard output', test.stdout(), expect) +test.must_contain_all_lines(test.stdout(), expect) test.run(arguments = '-?') -test.must_contain_all_lines('Standard output', test.stdout(), expect) +test.must_contain_all_lines(test.stdout(), expect) test.run(arguments = '--help') -test.must_contain_all_lines('Standard output', test.stdout(), expect) +test.must_contain_all_lines(test.stdout(), expect) test.pass_test() |