From: Peter Hutterer Date: Wed, 16 Jul 2014 04:10:08 +0000 (+1000) Subject: test: fix x/y resolution for a test device X-Git-Tag: 0.5.0~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9de131f08253595821cb94a083dcc1ff62325467;p=platform%2Fupstream%2Flibinput.git test: fix x/y resolution for a test device Signed-off-by: Peter Hutterer --- diff --git a/test/touch.c b/test/touch.c index 5d704c53..6f6eec0a 100644 --- a/test/touch.c +++ b/test/touch.c @@ -72,8 +72,8 @@ START_TEST(touch_abs_transform) bool tested = false; struct input_absinfo abs[] = { - { ABS_X, 0, 32767, 75, 0, 0 }, - { ABS_Y, 0, 32767, 129, 0, 0 }, + { ABS_X, 0, 32767, 75, 0, 10 }, + { ABS_Y, 0, 32767, 129, 0, 9 }, { ABS_MT_POSITION_X, 0, 32767, 0, 0, 10 }, { ABS_MT_POSITION_Y, 0, 32767, 0, 0, 9 }, { .value = -1 },