From f1668b33f23e2c8a2a9aebeb833aa4f60bd514c9 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 28 Aug 2018 10:12:44 +1000 Subject: [PATCH] test: fix a touchpad test using the wrong coordinates We moved to 60/60 before, not 50/50. Signed-off-by: Peter Hutterer --- test/test-touchpad-tap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-touchpad-tap.c b/test/test-touchpad-tap.c index 7a6c2216..6a43a379 100644 --- a/test/test-touchpad-tap.c +++ b/test/test-touchpad-tap.c @@ -2722,7 +2722,7 @@ START_TEST(touchpad_tap_palm_on_touch_hold_move) litest_touch_move_to(dev, 0, 50, 50, 60, 60, 10, 1); litest_drain_events(li); - litest_touch_move_to_extended(dev, 0, 50, 50, 50, 50, axes, 1, 1); + litest_touch_move_to_extended(dev, 0, 60, 60, 60, 60, axes, 1, 1); litest_touch_up(dev, 0); libinput_dispatch(li);