Fix DebugConsoleTest
The debug console now displays window ids as hexidecimal numbers.
This commit is contained in:
parent
267eb0e9fa
commit
a8dd455953
1 changed files with 1 additions and 1 deletions
|
@ -237,7 +237,7 @@ void DebugConsoleTest::testX11Unmanaged()
|
|||
QVERIFY(!model.index(0, 2, unmanagedTopLevelIndex).isValid());
|
||||
QVERIFY(!model.index(1, 0, unmanagedTopLevelIndex).isValid());
|
||||
|
||||
QCOMPARE(model.data(clientIndex, Qt::DisplayRole).toString(), QString::number(window));
|
||||
QCOMPARE(model.data(clientIndex, Qt::DisplayRole).toString(), QStringLiteral("0x%1").arg(window, 0, 16));
|
||||
|
||||
// the clientIndex has children and those are properties
|
||||
for (int i = 0; i < model.rowCount(clientIndex); i++) {
|
||||
|
|
Loading…
Reference in a new issue