]> git.sur5r.net Git - i3/i3/commitdiff
Fix flakyness in t/189-floating-constraints.t 3445/head
authorOrestis Floros <orestisf1993@gmail.com>
Wed, 10 Oct 2018 16:14:26 +0000 (19:14 +0300)
committerOrestis Floros <orestisf1993@gmail.com>
Wed, 10 Oct 2018 16:15:45 +0000 (19:15 +0300)
Related to #3009.

testcases/t/189-floating-constraints.t

index 4ac95e1563d018d3d02f0d59c94d037dbb244a91..ba5f76aa11634fa0b7cec14e01429133c3af8b6d 100644 (file)
@@ -265,11 +265,13 @@ my sub open_with_max_size {
 }
 
 my sub check_minsize {
+    sync_with_i3;
     is($window->rect->{width}, $min_width, 'width = min_width');
     is($window->rect->{height}, $min_height, 'height = min_height');
 }
 
 my sub check_maxsize {
+    sync_with_i3;
     is($window->rect->{width}, $max_width, 'width = max_width');
     is($window->rect->{height}, $max_height, 'height = max_height');
 }
@@ -279,7 +281,6 @@ $pid = launch_with_config($config);
 $window = open_with_max_size;
 cmd 'floating enable';
 cmd 'border none';
-sync_with_i3;
 
 cmd "resize set $min_width px $min_height px";
 check_minsize;