Skip to content

Commit c6c8d8f

Browse files
committed
fix tests
1 parent ff6044c commit c6c8d8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unit_tests/destinations/test_destination.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ class TestArgParsing:
4646
@pytest.mark.parametrize(
4747
("arg_list", "expected_output"),
4848
[
49-
(["spec"], {"command": "spec"}),
50-
(["check", "--config", "bogus_path/"], {"command": "check", "config": "bogus_path/"}),
49+
(["spec"], {"command": "spec", "debug": False}),
50+
(["check", "--config", "bogus_path/"], {"command": "check", "config": "bogus_path/", "debug": False}),
5151
(
5252
["write", "--config", "config_path1", "--catalog", "catalog_path1"],
53-
{"command": "write", "config": "config_path1", "catalog": "catalog_path1"},
53+
{"command": "write", "config": "config_path1", "catalog": "catalog_path1", "debug": False},
5454
),
5555
],
5656
)

0 commit comments

Comments
 (0)