test: fix the ABS_Y handling for the Protocol A test device

No effect on the test results because we never use ABS_Y anyway for multitouch
devices.

Fixes #505

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2020-07-09 09:50:49 +10:00
parent 912a457f18
commit 0ccf43600c

View file

@ -76,7 +76,7 @@ protocolA_down(struct litest_device *d, unsigned int slot, double x, double y)
if (first) {
litest_event(d, EV_ABS, ABS_X, s->x);
litest_event(d, EV_ABS, ABS_X, s->y);
litest_event(d, EV_ABS, ABS_Y, s->y);
first = false;
}