┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/tests/dolphinmainwindowtest.cpp
diff options
context:
space:
mode:
authorElvis Angelaccio <[email protected]>2018-10-07 21:19:12 +0200
committerElvis Angelaccio <[email protected]>2018-10-07 21:19:12 +0200
commit54ae7f2488c1c52f7fe9c009bf674045eb6572dd (patch)
tree728e1bc7194355ae9d707c73ac35cf0c48077119 /src/tests/dolphinmainwindowtest.cpp
parent4c40ad45efe5de561323e8fa6df2ab59d8f10988 (diff)
[DolphinMainWindowTest] Add some debug output
testOpenInNewTabTitle() is currently failing on the CI, this should help investigate why.
Diffstat (limited to 'src/tests/dolphinmainwindowtest.cpp')
-rw-r--r--src/tests/dolphinmainwindowtest.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tests/dolphinmainwindowtest.cpp b/src/tests/dolphinmainwindowtest.cpp
index 027ab3e89..3fdabe7b8 100644
--- a/src/tests/dolphinmainwindowtest.cpp
+++ b/src/tests/dolphinmainwindowtest.cpp
@@ -188,6 +188,7 @@ void DolphinMainWindowTest::testOpenInNewTabTitle()
tabWidget->openNewTab(QUrl::fromLocalFile(QDir::tempPath()));
QCOMPARE(tabWidget->count(), 2);
+ qDebug() << "First tab:" << tabWidget->tabIcon(0).name() << "second tab:" << tabWidget->tabIcon(1).name();
QVERIFY(tabWidget->tabIcon(0).name() != tabWidget->tabIcon(1).name());
QVERIFY(tabWidget->tabText(0) != tabWidget->tabText(1));
}