[autotests] Fix X version check for skip in XWaylandInputTest
Was missing one digit.
This commit is contained in:
parent
b58fd1603c
commit
91a6efce33
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ void XWaylandInputTest::testPointerEnterLeave()
|
||||||
// create the test window
|
// create the test window
|
||||||
QScopedPointer<xcb_connection_t, XcbConnectionDeleter> c(xcb_connect(nullptr, nullptr));
|
QScopedPointer<xcb_connection_t, XcbConnectionDeleter> c(xcb_connect(nullptr, nullptr));
|
||||||
QVERIFY(!xcb_connection_has_error(c.data()));
|
QVERIFY(!xcb_connection_has_error(c.data()));
|
||||||
if (xcb_get_setup(c.data())->release_number < 1800000) {
|
if (xcb_get_setup(c.data())->release_number < 11800000) {
|
||||||
QSKIP("XWayland 1.18 required");
|
QSKIP("XWayland 1.18 required");
|
||||||
}
|
}
|
||||||
X11EventReaderHelper eventReader(c.data());
|
X11EventReaderHelper eventReader(c.data());
|
||||||
|
|
Loading…
Reference in a new issue