Tests: Fix test input

Change-Id: I514dbfaf398f215cf6d096d2b9c06c57fe6e0b00
Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io>
This commit is contained in:
Christian Stenger
2024-10-21 13:57:05 +02:00
committed by Marcus Tillmanns
parent 20f0170787
commit 7f94d49191

View File

@@ -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()) {