From 53279371fcba72e9f13c4939eefd094886858bb6 Mon Sep 17 00:00:00 2001 From: Markus Binsteiner Date: Tue, 2 Apr 2024 10:51:34 +0200 Subject: [PATCH] test: fix windows test --- tests/test_cli/test_run_subcommand.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_cli/test_run_subcommand.py b/tests/test_cli/test_run_subcommand.py index d9235fe57..d75ea4d90 100644 --- a/tests/test_cli/test_run_subcommand.py +++ b/tests/test_cli/test_run_subcommand.py @@ -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 @@ -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