From d76dc643cddcee448e0082eba65ad91449e87a46 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 1 Feb 2016 10:42:42 +1000 Subject: [PATCH] test: fix call to test_2fg_scroll Last argument is a boolean whether we want to have a tap timeout. It used to be the ms to sleep, obsolete since e4adbff919223 Signed-off-by: Peter Hutterer --- test/touchpad.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/touchpad.c b/test/touchpad.c index c1765493..9376cd58 100644 --- a/test/touchpad.c +++ b/test/touchpad.c @@ -139,7 +139,7 @@ START_TEST(touchpad_2fg_scroll) litest_assert_scroll(li, LIBINPUT_POINTER_AXIS_SCROLL_HORIZONTAL, -10); /* 2fg scroll smaller than the threshold should not generate events */ - test_2fg_scroll(dev, 0.1, 0.1, 200); + test_2fg_scroll(dev, 0.1, 0.1, 1); litest_assert_empty_queue(li); } END_TEST