From 996270d1a15d5a2fbb132cd179baee6f2288e0b8 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 20 Jun 2019 13:38:47 +1000 Subject: [PATCH] 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 --- test/test-touchpad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-touchpad.c b/test/test-touchpad.c index d6f3533..96281ea 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); -- 2.7.4