summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2019-06-20 13:38:47 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2019-06-20 22:16:15 +0000
commit996270d1a15d5a2fbb132cd179baee6f2288e0b8 (patch)
tree3d8258c5880e60b2249151ef93a9f2241c1f2a67 /test
parent160d3f2b66c093662fc0139ccfdfc200242b394d (diff)
downloadlibinput-996270d1a15d5a2fbb132cd179baee6f2288e0b8.tar.gz
test: fix button area scroll test to not be a pinch
Second finger's x coordinate was wrong. That we didn't pick this up as pinch is quite telling too. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'test')
-rw-r--r--test/test-touchpad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-touchpad.c b/test/test-touchpad.c
index d6f35337..96281ea6 100644
--- a/test/test-touchpad.c
+++ b/test/test-touchpad.c
@@ -552,7 +552,7 @@ START_TEST(touchpad_2fg_scroll_from_btnareas)
for (int i = 0; i < 20; i++) {
litest_touch_move(dev, 0, 30, 90 - i);
- litest_touch_move(dev, 1, 30, 95 - i);
+ litest_touch_move(dev, 1, 50, 95 - i);
}
libinput_dispatch(li);