Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
madhur-ob committed Apr 28, 2024
1 parent 49983ff commit 90fe638
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/core/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def construct_arg_dict(params_opts, cli_options):

for arg in cli_options:
if "=" in arg:
given_opt, val = arg.split("=")
given_opt, val = arg.split("=", 1)
has_value = True
else:
given_opt = arg
Expand All @@ -96,9 +96,9 @@ def construct_arg_dict(params_opts, cli_options):
value = val
else:
if secondary_supplied:
value = not each_param.default
value = False
else:
value = each_param.default
value = True

if each_param.multiple:
if key not in result_dict:
Expand Down

0 comments on commit 90fe638

Please sign in to comment.