From 65e5f9f01078ec993648da3a132f60c7f07ff27d Mon Sep 17 00:00:00 2001 From: Ahmad Samir Date: Sat, 6 Feb 2021 22:49:41 +0200 Subject: Fix windows build on the CI I didn't consider the '#ifdef Q_OS_WIN' code paths (since that compiles just fine locally). GIT_SILENT --- autotests/test_kconf_update.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autotests/test_kconf_update.cpp') diff --git a/autotests/test_kconf_update.cpp b/autotests/test_kconf_update.cpp index 88ba385f..f08e06ca 100644 --- a/autotests/test_kconf_update.cpp +++ b/autotests/test_kconf_update.cpp @@ -47,7 +47,7 @@ static QString readFile(const QString &path) QString ret = QString::fromUtf8(file.readAll()); #ifdef Q_OS_WIN // KConfig always writes files with the native line ending, the test comparison uses \n - ret.replace("\r\n", "\n"); + ret.replace(QLatin1String{"\r\n"}, QLatin1String{"\n"}); #endif return ret; } -- cgit v1.2.1