From 59027476c71a0857f3d856285bae6124f3f90af3 Mon Sep 17 00:00:00 2001 From: Liam Collod Date: Sat, 18 Jan 2025 12:54:20 +0100 Subject: [PATCH] chore(tests): fix test__e2e_kloch_rezenv on UNIX --- tests/test_e2e.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_e2e.py b/tests/test_e2e.py index c0d9680..7c0e6da 100644 --- a/tests/test_e2e.py +++ b/tests/test_e2e.py @@ -100,7 +100,7 @@ def test__e2e_kloch_rezenv(tmp_path, data_dir): check_command = ["--", "echo", "$Env:REZ_VERSION", "$Env:TESTPKG_CONFIRM_VAR"] else: rez_bin_dir = REZ_INSTALL_CACHE / "bin" / "rez" - check_command = ["--", "echo", "$REZ_VERSION", "$TESTPKG_CONFIRM_VAR"] + check_command = ["--", "echo", "$REZ_VERSION\n$TESTPKG_CONFIRM_VAR"] environ = os.environ.copy() environ[kloch.Environ.CONFIG_LAUNCHER_PLUGINS] = kloch_rezenv.__name__