summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2022-05-05 09:52:49 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2022-05-10 09:52:04 +1000
commit4d3bbc84e026ad4f7513d54432c26ae49b2fdd4d (patch)
tree3df2c41dd545ce383de6c249423d4e28b48eb310
parent5d4ef8ac9088427dabbe5b6d5e367bb44c1d59bc (diff)
downloadxf86-input-wacom-4d3bbc84e026ad4f7513d54432c26ae49b2fdd4d.tar.gz
test: increase the count of events for axis update tests
Make it 30% of the axis in 2% step increments, this gets past the issue of tilt not updating significantly and getting filtered. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> Reviewed-by: Aaron Skomra <aaron.skomra@wacom.com>
-rw-r--r--test/test_wacom.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_wacom.py b/test/test_wacom.py
index b7dcd5e..b92901c 100644
--- a/test/test_wacom.py
+++ b/test/test_wacom.py
@@ -166,7 +166,7 @@ def test_axis_updates(mainloop, opts, axis):
# Send a bunch of events with only one axis changing, the rest remains at
# the device's logical center
- for i in range(10):
+ for i in range(0, 30, 2):
axes = [0] * len(map)
axes[map[axis]] = i