From 7f94d491913b442e88a657b971bc491cdd52fb6d Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 21 Oct 2024 13:57:05 +0200 Subject: [PATCH] Tests: Fix test input Change-Id: I514dbfaf398f215cf6d096d2b9c06c57fe6e0b00 Reviewed-by: Marcus Tillmanns --- tests/auto/utils/expander/tst_expander.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/utils/expander/tst_expander.cpp b/tests/auto/utils/expander/tst_expander.cpp index 4bb8fc18892..a1dac554fb8 100644 --- a/tests/auto/utils/expander/tst_expander.cpp +++ b/tests/auto/utils/expander/tst_expander.cpp @@ -193,7 +193,7 @@ private slots: QTest::newRow("with-ticks") << QString("echo -n 'foo %{file}'") << QString("echo -n 'foo foo.txt'") << file; - QTest::newRow("with-ticks-env") << QString("file=\%{file} echo -n 'foo \"$file\"'") + QTest::newRow("with-ticks-env") << QString("file=%{file} echo -n 'foo \"$file\"'") << QString("file=foo.txt echo -n 'foo \"$file\"'") << file; if (Utils::HostOsInfo::isWindowsHost()) {