Skip to content

Commit

Permalink
test: fix windows test
Browse files Browse the repository at this point in the history
  • Loading branch information
makkus committed Apr 2, 2024
1 parent c640df9 commit 5327937
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cli/test_run_subcommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_run_with_valid_inputs():
runner = CliRunner()
result = runner.invoke(
cli,
f"-cnf {KIARA_CONFIG_FILE} run logic.and a=true b=true --comment 'A comment.'",
f'-cnf {KIARA_CONFIG_FILE} run logic.and a=true b=true --comment "A comment."',
)
assert result.exit_code == 0
assert "True" in result.stdout
Expand All @@ -61,7 +61,7 @@ def test_run_with_save():
runner.invoke(cli, "context delete -f")
result = runner.invoke(
cli,
f"-cnf {KIARA_CONFIG_FILE} run logic.and a=true b=true --save test_save --comment 'A comment.'",
f'-cnf {KIARA_CONFIG_FILE} run logic.and a=true b=true --save test_save --comment "A comment."',
)
assert result.exit_code == 0
assert "True" in result.stdout
Expand Down

0 comments on commit 5327937

Please sign in to comment.