Fix failing testWindowTitle() on the KDE CI

Forgot that the default places panel no longer ships the Root place.

GIT_SILENT
This commit is contained in:
Elvis Angelaccio 2019-09-15 20:59:08 +02:00
parent 681d8bb6cd
commit cb0f6f4d9b

View file

@ -261,7 +261,6 @@ void DolphinMainWindowTest::testWindowTitle_data()
// TODO: this test should enforce the english locale.
QTest::newRow("home") << QUrl::fromLocalFile(QDir::homePath()) << QStringLiteral("Home");
QTest::newRow("home with trailing slash") << QUrl::fromLocalFile(QStringLiteral("%1/").arg(QDir::homePath())) << QStringLiteral("Home");
QTest::newRow("root") << QUrl::fromLocalFile(QDir::rootPath()) << QStringLiteral("Root");
QTest::newRow("trash") << QUrl::fromUserInput(QStringLiteral("trash:/")) << QStringLiteral("Trash");
}