linux: Add gaming input type to the test suite

The enum member was missing.
This commit is contained in:
Bastien Nocera 2019-05-09 11:14:07 +02:00
parent 56ff72fdf4
commit f16a8feea0

View file

@ -85,7 +85,8 @@ BATTERY_IFACE = 'org.bluez.Battery1'
UP_DEVICE_KIND_PHONE,
UP_DEVICE_KIND_MEDIA_PLAYER,
UP_DEVICE_KIND_TABLET,
UP_DEVICE_KIND_COMPUTER) = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11)
UP_DEVICE_KIND_COMPUTER,
UP_DEVICE_KIND_GAMING_INPUT) = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12)
class Tests(dbusmock.DBusTestCase):
@classmethod