diff options
Diffstat (limited to 'autotests/test_kconf_update.cpp')
-rw-r--r-- | autotests/test_kconf_update.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autotests/test_kconf_update.cpp b/autotests/test_kconf_update.cpp index baa4dc56..dc03f9ff 100644 --- a/autotests/test_kconf_update.cpp +++ b/autotests/test_kconf_update.cpp @@ -44,7 +44,7 @@ static void writeFile(const QString &path, const QString &content) QFile file(path); bool ok = file.open(QIODevice::WriteOnly); Q_UNUSED(ok) // silence warnings - Q_ASSERT(ok); + QVERIFY2(ok, qPrintable(path)); file.write(content.toUtf8()); } |