diff --git a/CMakeLists.txt b/CMakeLists.txt --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,6 @@ +# dummy comment to do something +# final change + cmake_minimum_required(VERSION 3.0) set(KF5_VERSION "5.48.0") # handled by release scripts diff --git a/autotests/karchivetest.cpp b/autotests/karchivetest.cpp --- a/autotests/karchivetest.cpp +++ b/autotests/karchivetest.cpp @@ -191,7 +191,7 @@ contents = dev->read(5); // test reading in two chunks QCOMPARE(contents.size(), 5); contents += dev->read(50); - QCOMPARE(contents.size(), 13); + QCOMPARE(contents.size(), 15); QCOMPARE(QString::fromLatin1(contents.constData()), QString::fromLatin1(arr.constData())); delete dev;