diff options
Diffstat (limited to 'test/GetOption/help.py')
-rw-r--r-- | test/GetOption/help.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/GetOption/help.py b/test/GetOption/help.py index ebca99f..4db4bc8 100644 --- a/test/GetOption/help.py +++ b/test/GetOption/help.py @@ -39,14 +39,14 @@ else: print("no help for you") """) -test.run(arguments = '-q -Q', stdout = "no help for you\n") +test.run(arguments='-q -Q', stdout="no help for you\n") expect = "GetOption('help') set" -test.run(arguments = '-q -Q -h') +test.run(arguments='-q -Q -h') test.fail_test(test.stdout().split('\n')[0] != expect) -test.run(arguments = '-q -Q --help') +test.run(arguments='-q -Q --help') test.fail_test(test.stdout().split('\n')[0] != expect) test.pass_test() |