mirror of
https://github.com/NohamR/Reclass.git
synced 2026-05-10 19:59:21 +00:00
fix: Qt5 compat - fix ambiguous QByteRef comparison in test_windbg_provider
This commit is contained in:
@@ -325,7 +325,7 @@ private slots:
|
|||||||
// Verify it's not all zeros (the old failure mode)
|
// Verify it's not all zeros (the old failure mode)
|
||||||
bool allZero = true;
|
bool allZero = true;
|
||||||
for (int i = 0; i < data.size(); ++i) {
|
for (int i = 0; i < data.size(); ++i) {
|
||||||
if (data[i] != 0) { allZero = false; break; }
|
if (data[i] != '\0') { allZero = false; break; }
|
||||||
}
|
}
|
||||||
QVERIFY2(!allZero, "Data is all zeros — background thread read failed");
|
QVERIFY2(!allZero, "Data is all zeros — background thread read failed");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user