From 84872fa35b8bad8eb45af5b2df36d9ac1e01aa98 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 18 Jun 2019 15:13:05 +1000 Subject: [PATCH] test: fix the clickfinger thumb test This test was putting both fingers down in the thumb area. That's not representative, it's more likely that a thumb is in the area and the second finger clicks elsewhere. So let's test for that instead. Signed-off-by: Peter Hutterer --- test/test-touchpad.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test-touchpad.c b/test/test-touchpad.c index 531e5e47..2473193c 100644 --- a/test/test-touchpad.c +++ b/test/test-touchpad.c @@ -5148,7 +5148,7 @@ START_TEST(touchpad_thumb_area_clickfinger) Shouldn't matter in real life */ litest_touch_move_extended(dev, 0, 55, 99, axes); libinput_dispatch(li); - litest_touch_down(dev, 1, 60, 99); + litest_touch_down(dev, 1, 60, 50); libinput_dispatch(li); litest_button_click(dev, BTN_LEFT, true); @@ -5175,7 +5175,7 @@ START_TEST(touchpad_thumb_area_clickfinger) Shouldn't matter in real life */ litest_touch_move_extended(dev, 1, 60, 99, axes); libinput_dispatch(li); - litest_touch_down(dev, 0, 50, 99); + litest_touch_down(dev, 0, 50, 50); libinput_dispatch(li); litest_button_click(dev, BTN_LEFT, true);