[autotests] Fix X version check for skip in XWaylandInputTest

Was missing one digit.
This commit is contained in:
Martin Gräßlin 2016-08-23 13:39:23 +02:00
parent b58fd1603c
commit 91a6efce33

View file

@ -135,7 +135,7 @@ void XWaylandInputTest::testPointerEnterLeave()
// create the test window
QScopedPointer<xcb_connection_t, XcbConnectionDeleter> c(xcb_connect(nullptr, nullptr));
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");
}
X11EventReaderHelper eventReader(c.data());