Skip to content

Commit

Permalink
test_arg_parser uses provided args
Browse files Browse the repository at this point in the history
  • Loading branch information
padraic-shafer authored Feb 28, 2024
1 parent 0bd357a commit 2c7c102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nslsii_kafka/tests/test_prefect_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def test_arg_parser():
""
args = ["arg_0", "arg_1"]
arg_parser = get_arg_parser()
parsed_args = arg_parser.parse_args()
parsed_args = arg_parser.parse_args(args)

assert parsed_args.endstation == "arg_0"
assert parsed_args.deployment_name == "arg_1"
Expand Down

0 comments on commit 2c7c102

Please sign in to comment.