test: drop two unreachable statements

This was a copy-paste error in the form of

	while(event) {
	   ...}
	} while(event);

Found by coverity.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2019-06-03 10:10:40 +10:00
parent 3b0f068eaf
commit c9a936f1bb

View file

@ -4987,7 +4987,7 @@ verify_left_handed_tablet_motion(struct litest_device *tablet,
libinput_event_destroy(event);
event = libinput_get_event(li);
} while (event);
}
}
static void
@ -5048,7 +5048,7 @@ verify_left_handed_touch_motion(struct litest_device *finger,
libinput_event_destroy(event);
event = libinput_get_event(li);
} while (event);
}
}
static void