diff options
Diffstat (limited to 'test/scons-time/mem/help.py')
-rw-r--r-- | test/scons-time/mem/help.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/scons-time/mem/help.py b/test/scons-time/mem/help.py index 0658d5b..3adb121 100644 --- a/test/scons-time/mem/help.py +++ b/test/scons-time/mem/help.py @@ -40,18 +40,18 @@ expect = [ test.run(arguments = 'mem -h') -test.must_contain_all_lines('Standard output', test.stdout(), expect) +test.must_contain_all_lines(test.stdout(), expect) test.run(arguments = 'mem -?') -test.must_contain_all_lines('Standard output', test.stdout(), expect) +test.must_contain_all_lines(test.stdout(), expect) test.run(arguments = 'mem --help') -test.must_contain_all_lines('Standard output', test.stdout(), expect) +test.must_contain_all_lines(test.stdout(), expect) test.run(arguments = 'help mem') -test.must_contain_all_lines('Standard output', test.stdout(), expect) +test.must_contain_all_lines(test.stdout(), expect) test.pass_test() |