From 91a6efce337eb650c3e2ce29e7dc57a036dd3f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Tue, 23 Aug 2016 13:39:23 +0200 Subject: [PATCH] [autotests] Fix X version check for skip in XWaylandInputTest Was missing one digit. --- autotests/integration/xwayland_input_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotests/integration/xwayland_input_test.cpp b/autotests/integration/xwayland_input_test.cpp index a386d20040..4ffce73c55 100644 --- a/autotests/integration/xwayland_input_test.cpp +++ b/autotests/integration/xwayland_input_test.cpp @@ -135,7 +135,7 @@ void XWaylandInputTest::testPointerEnterLeave() // create the test window QScopedPointer 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());