From 41704028d30c7e5a7b633fe47983a9eeccd37bb6 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Thu, 19 Apr 2018 13:46:12 +1000 Subject: [PATCH] tools: yaml verifier: add POINTER_AXIS to allowed events types Signed-off-by: Peter Hutterer --- tools/libinput-record-verify-yaml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libinput-record-verify-yaml.py b/tools/libinput-record-verify-yaml.py index 9c8d39b7..14b021eb 100755 --- a/tools/libinput-record-verify-yaml.py +++ b/tools/libinput-record-verify-yaml.py @@ -221,7 +221,7 @@ class TestYaml(unittest.TestCase): self.assertTrue(isinstance(ev, dict)) def test_events_libinput_type(self): - types = ['POINTER_MOTION', 'POINTER_MOTION_ABSOLUTE', + types = ['POINTER_MOTION', 'POINTER_MOTION_ABSOLUTE', 'POINTER_AXIS', 'POINTER_BUTTON', 'DEVICE_ADDED', 'KEYBOARD_KEY', 'TOUCH_DOWN', 'TOUCH_MOTION', 'TOUCH_UP', 'TOUCH_FRAME'] for e in self.libinput_events():