From 7357639397fd7457149329494f615bb0053b9036 Mon Sep 17 00:00:00 2001 From: Daniel Vetter Date: Thu, 15 May 2014 17:02:39 +0200 Subject: [PATCH] tests/pm_pc8: Use igt_assert_cmpint More pretty! Signed-off-by: Daniel Vetter --- tests/pm_pc8.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/pm_pc8.c b/tests/pm_pc8.c index d3635037..323e0729 100644 --- a/tests/pm_pc8.c +++ b/tests/pm_pc8.c @@ -605,8 +605,7 @@ static void test_i2c(struct mode_set_data *data) int i2c_edids = count_i2c_valid_edids(); int drm_edids = count_drm_valid_edids(data); - igt_assert_f(i2c_edids == drm_edids, "i2c:%d drm:%d\n", i2c_edids, - drm_edids); + igt_assert_cmpint(i2c_edids, ==, drm_edids); } static void setup_pc8(void)