From cfbae20c48972eda66834c9482d11d41baba427b Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Wed, 27 Jun 2018 11:47:21 +0200 Subject: [PATCH] test-region: Replace spice_assert() with g_assert_true() Signed-off-by: Christophe Fergeau Acked-by: Frediano Ziglio --- tests/test-region.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-region.c b/tests/test-region.c index 4e0947e..2effc99 100644 --- a/tests/test-region.c +++ b/tests/test-region.c @@ -73,7 +73,7 @@ static void rect_set(SpiceRect *r, int32_t top, int32_t left, int32_t bottom, in r->left = left; r->bottom = bottom; r->right = right; - spice_assert(rect_is_valid(r)); + g_assert_true(rect_is_valid(r)); } static void random_region(QRegion *reg)