summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@kdab.com>2016-08-24 08:29:59 +0200
committerSean Harmer <sean.harmer@kdab.com>2016-08-24 19:33:29 +0000
commitc899e0f334f02c1483665cf4cca10cbfaf3b7d18 (patch)
tree4c18bd304de7ec934c2be433c8316d7a7f1a6069 /tests
parent54765577f1b89175f8b1fae842c9ffd2c96f4943 (diff)
Fix timeout handling in input chords
Change-Id: Ic4ab2d781403ada1206e7429ad1cd16ea2330aed Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/input/inputchord/tst_inputchord.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/input/inputchord/tst_inputchord.cpp b/tests/auto/input/inputchord/tst_inputchord.cpp
index 1e2dc417a..cd9216646 100644
--- a/tests/auto/input/inputchord/tst_inputchord.cpp
+++ b/tests/auto/input/inputchord/tst_inputchord.cpp
@@ -269,10 +269,10 @@ private Q_SLOTS:
QCOMPARE(backendInputChord.process(&handler, 1000000400), false); // Too late
// THEN
- QCOMPARE(backendInputChord.process(&handler, 1000000600), true); // Yes, that's yet another bug
+ QCOMPARE(backendInputChord.process(&handler, 1000000600), false);
// THEN
- QCOMPARE(backendInputChord.process(&handler, 1000000800), true); // Yes, that's yet another bug
+ QCOMPARE(backendInputChord.process(&handler, 1000000800), false);
}
};