diff options
| author | Elvis Angelaccio <[email protected]> | 2018-02-03 22:34:24 +0100 |
|---|---|---|
| committer | Elvis Angelaccio <[email protected]> | 2018-02-03 22:34:24 +0100 |
| commit | a90daf82b6a836eb4c579ff4752900cffc63aa3e (patch) | |
| tree | 99c1361074babfdf275e6068f79d0a2f64871c49 /src/tests/kfileitemlistviewtest.cpp | |
| parent | bf1081a824d9024a400d2ac2437f169c6765caa5 (diff) | |
Fix -Wunused-result warnings
Diffstat (limited to 'src/tests/kfileitemlistviewtest.cpp')
| -rw-r--r-- | src/tests/kfileitemlistviewtest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/kfileitemlistviewtest.cpp b/src/tests/kfileitemlistviewtest.cpp index b4b581384..775602f9f 100644 --- a/src/tests/kfileitemlistviewtest.cpp +++ b/src/tests/kfileitemlistviewtest.cpp @@ -56,7 +56,7 @@ void KFileItemListViewTest::init() m_graphicsView = new QGraphicsView(); m_graphicsView->show(); - QTest::qWaitForWindowExposed(m_graphicsView); + QVERIFY(QTest::qWaitForWindowExposed(m_graphicsView)); } void KFileItemListViewTest::cleanup() |
