Skip to content

Commit

Permalink
legacyoutput is too new for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mkorpela committed Nov 30, 2024
1 parent 6e97966 commit d1c768e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_pabot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1332,7 +1332,7 @@ def test_merge_one_run_with_and_without_legacyoutput(self):

def test_parse_args_mixed_order(self):
options, datasources, pabot_args, options_for_subprocesses = arguments.parse_args([
"--legacyoutput",
"--exitonfailure",
"--processes", "12",
"--outputdir", "mydir",
"--verbose",
Expand All @@ -1343,7 +1343,7 @@ def test_parse_args_mixed_order(self):
self.assertEqual(pabot_args["verbose"], True)
self.assertEqual(pabot_args["pabotlib"], True)
self.assertEqual(options["outputdir"], "mydir")
self.assertEqual(options["legacyoutput"], True)
self.assertEqual(options["exitonfailure"], True)
self.assertEqual(datasources, ["suite"])

def test_parse_args_error_handling(self):
Expand Down

0 comments on commit d1c768e

Please sign in to comment.