summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArttu Tarkiainen <arttu.tarkiainen@qt.io>2019-06-28 16:04:48 +0300
committerArttu Tarkiainen <arttu.tarkiainen@qt.io>2019-08-15 12:14:34 +0000
commit6d5c3d36ea1069f1b3a419dcb2708a1fc2c0e77c (patch)
tree2553976f34f9663b02774f53c8be76c2be0d3a20
parentd4eb7fba672b37113c9f4eb8e440b9cb879b1d5a (diff)
Fix incorrect compare string on findMagicCookieWithError() test function
Change-Id: Ic38a4dd321d01606deb5f85bfdabac3677205e81 Reviewed-by: Iikka Eklund <iikka.eklund@qt.io> Reviewed-by: Katja Marttila <katja.marttila@qt.io>
-rw-r--r--tests/auto/installer/binaryformat/tst_binaryformat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/installer/binaryformat/tst_binaryformat.cpp b/tests/auto/installer/binaryformat/tst_binaryformat.cpp
index 6b40452c0..c9cd2b00f 100644
--- a/tests/auto/installer/binaryformat/tst_binaryformat.cpp
+++ b/tests/auto/installer/binaryformat/tst_binaryformat.cpp
@@ -128,7 +128,7 @@ private slots:
// throws
QInstaller::BinaryContent::findMagicCookie(&file, QInstaller::BinaryContent::MagicCookie);
} catch (const QInstaller::Error &error) {
- QCOMPARE(qPrintable(error.message()), "No marker found, stopped after 71.00 KiB.");
+ QCOMPARE(qPrintable(error.message()), "No marker found, stopped after 71.00 KB.");
} catch (...) {
QFAIL("Unexpected error.");
}