From: Alexander Lohnau Date: Wed, 27 Dec 2023 05:57:31 +0000 (+0100) Subject: kfileitemmodeltest: Include KIO/SimpleJob header instead of relying on compat code X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/acbc78f8ba8ca6ae06e0a04eb13d68f33d79824f?ds=sidebyside kfileitemmodeltest: Include KIO/SimpleJob header instead of relying on compat code Amends 3f92ac800c5e52d0a5622367ff8ffe8cbbdfa184 --- diff --git a/src/tests/kfileitemmodeltest.cpp b/src/tests/kfileitemmodeltest.cpp index 973b9c08c..fad825dc0 100644 --- a/src/tests/kfileitemmodeltest.cpp +++ b/src/tests/kfileitemmodeltest.cpp @@ -13,7 +13,7 @@ #include #include -#include +#include #include "kitemviews/kfileitemmodel.h" #include "testdir.h" @@ -1756,10 +1756,10 @@ void KFileItemModelTest::collapseParentOfHiddenItems() // Set a name filter that matches nothing -> nothing should remain. m_model->setNameFilter("xyz"); QCOMPARE(itemsRemovedSpy.count(), 1); - QCOMPARE(m_model->count(), 0); //Everything is hidden + QCOMPARE(m_model->count(), 0); // Everything is hidden QCOMPARE(itemsInModel(), QStringList()); - //Filter by the file names. Folder "d" will be hidden since it was collapsed + // Filter by the file names. Folder "d" will be hidden since it was collapsed m_model->setNameFilter("1"); QCOMPARE(itemsRemovedSpy.count(), 1); // nothing was removed, itemsRemovedSpy count will remain the same: QCOMPARE(m_model->count(), 6); // 6 items: "a/", "a/b/", "a/b/c", "a/b/c/1", "a/b/1", "a/1"