[kandinsky/test] Repare test on rect union

Change-Id: Ie78bc2a42442ea4b1e36d85034181723a5d08c2d
This commit is contained in:
Émilie Feral
2017-06-27 10:13:04 +02:00
parent 9f82e9b4c4
commit 54d985b676

View File

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