Skip to content

Commit 568ea7d

Browse files
committed
change python3 command to python
1 parent a653730 commit 568ea7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def check_command_result(result: Result):
3131

3232
@pytest.mark.slow
3333
def test_that_the_module_cli_behaves_the_same_as_the_plain_cli():
34-
module_cli = check_output(["python3", "-m", "dcqc", "--help"])
34+
module_cli = check_output(["python", "-m", "dcqc", "--help"])
3535
plain_cli = check_output(["dcqc", "--help"])
3636
assert module_cli == plain_cli
3737

0 commit comments

Comments
 (0)