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()); }