From 54d985b676fde255cf71ec9c64b71445b74355b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Tue, 27 Jun 2017 10:13:04 +0200 Subject: [PATCH] [kandinsky/test] Repare test on rect union Change-Id: Ie78bc2a42442ea4b1e36d85034181723a5d08c2d --- kandinsky/test/rect.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kandinsky/test/rect.cpp b/kandinsky/test/rect.cpp index 5a374860a..284213a55 100644 --- a/kandinsky/test/rect.cpp +++ b/kandinsky/test/rect.cpp @@ -54,7 +54,7 @@ QUIZ_CASE(kandinsky_rect_empty_union) { t = a.unionedWith(c); assert(t.x() == a.x()); - assert(t.y() == c.y()); + assert(t.y() == a.y()); assert(t.width() == a.width()); - assert(t.height() == 7); + assert(t.height() == a.height()); }