diff options
author | Dave Airlie <airlied@redhat.com> | 2015-12-02 10:53:25 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2015-12-02 10:53:25 +1000 |
commit | c6da60278c554069eeee4ed5fc14e298d91ce711 (patch) | |
tree | 7c6a8df30e82e5e56e5155d402ac913d8bbfdbda /tests/test_virgl_init.c | |
parent | 2ee8859757bb8d1f86c9928e52f6dc8220fadf38 (diff) |
tests: fix typo,
I forgot to git add.
Diffstat (limited to 'tests/test_virgl_init.c')
-rw-r--r-- | tests/test_virgl_init.c | 4 |
1 files 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); |