From c6da60278c554069eeee4ed5fc14e298d91ce711 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Wed, 2 Dec 2015 10:53:25 +1000 Subject: [PATCH] tests: fix typo, I forgot to git add. --- tests/test_virgl_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_virgl_init.c b/tests/test_virgl_init.c index 0fdb65f..46d61e5 100644 --- a/tests/test_virgl_init.c +++ b/tests/test_virgl_init.c @@ -329,8 +329,8 @@ START_TEST(virgl_test_get_resource_info) ret = virgl_renderer_resource_get_info(res.handle, &info); ck_assert_int_eq(ret, 0); - ck_assert_int(info.drm_fourcc == GBM_FORMAT_ABGR8888 || - info.drm_fourcc == GBM_FORMAT_ARGB8888); + ck_assert(info.drm_fourcc == GBM_FORMAT_ABGR8888 || + info.drm_fourcc == GBM_FORMAT_ARGB8888); ck_assert_int_eq(info.virgl_format, res.format); ck_assert_int_eq(res.width, info.width); ck_assert_int_eq(res.height, info.height);