From ec2b4bbaff68643a2a442498bcdf7c0a4b82dcdf Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Mon, 24 Mar 2014 14:37:16 +1000 Subject: [PATCH] test: fix keyboard capabilities LITEST_KEYBOARD is the device type, not a feature. Signed-off-by: Peter Hutterer --- test/litest-keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/litest-keyboard.c b/test/litest-keyboard.c index 5c142adf..dd911587 100644 --- a/test/litest-keyboard.c +++ b/test/litest-keyboard.c @@ -106,7 +106,7 @@ litest_create_keyboard(struct litest_device *d) struct litest_test_device litest_keyboard_device = { .type = LITEST_KEYBOARD, - .features = LITEST_KEYBOARD, + .features = LITEST_KEYS, .shortname = "default keyboard", .setup = litest_keyboard_setup, .teardown = litest_generic_device_teardown,