From 6d2030dabb9dac305e3c051b25c16ae6963961a1 Mon Sep 17 00:00:00 2001 From: Ander Conselvan de Oliveira Date: Tue, 15 May 2012 14:32:05 +0300 Subject: [PATCH] tests: Fix event-test notify_motion() now receives coordinates in wl_fixed_t but the test was still passing integers. --- tests/event-test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/event-test.c b/tests/event-test.c index 737e227..e89d5aa 100644 --- a/tests/event-test.c +++ b/tests/event-test.c @@ -56,7 +56,8 @@ handle_surface(struct test_client *client) device = client->compositor->input_device; client->compositor->focus = 1; /* Make it work even if pointer is * outside X window. */ - notify_motion(device, 100, 150, 150); + notify_motion(device, 100, + wl_fixed_from_int(150), wl_fixed_from_int(150)); test_client_send(client, "bye\n"); } -- 2.7.4