]> git.sur5r.net Git - i3/i3/commitdiff
modify t/04-floating.t to reflect the new way we are doing decorations
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 14 Nov 2010 15:42:13 +0000 (16:42 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 14 Nov 2010 15:42:13 +0000 (16:42 +0100)
testcases/t/04-floating.t

index d16fa8b73834c4e6d7541d8dd38e59629aa87f18..de104f2f47c47742a8bcd9872cf5b247e7fdeb78 100644 (file)
@@ -54,8 +54,10 @@ sleep(0.25);
 cmp_ok($absolute->{width}, '==', 80, "i3 let the width at 80");
 cmp_ok($absolute->{height}, '==', 90, "i3 let the height at 90");
 
+# We need to compare the position with decorations due to the way
+# we do decoration rendering (on the parent frame) in the tree branch
 cmp_ok($top->{x}, '==', 1, 'i3 mapped it to x=1');
-cmp_ok($top->{y}, '==', 1, 'i3 mapped it to y=1');
+cmp_ok($top->{y}, '==', 18, 'i3 mapped it to y=18');
 
 $window->unmap;