Fix test 517
Test 517 was sometimes failing because the command to reset the test generates a focus event which was not being properly ignored. Now the correct event should always be tested.
This commit is contained in:
parent
45fa4b7d23
commit
c79309eba8
|
@ -68,7 +68,11 @@ is(@{$event->{current}->{nodes}}, 1, 'focus event gave the right number of windo
|
||||||
|
|
||||||
# reset and try again
|
# reset and try again
|
||||||
$focus = AnyEvent->condvar;
|
$focus = AnyEvent->condvar;
|
||||||
cmd 'workspace ws-left; move right';
|
cmd 'workspace ws-left';
|
||||||
|
$focus->recv;
|
||||||
|
|
||||||
|
$focus = AnyEvent->condvar;
|
||||||
|
cmd 'move right';
|
||||||
$event = $focus->recv;
|
$event = $focus->recv;
|
||||||
ok($event, 'moving from workspace with one window triggered focus ipc event');
|
ok($event, 'moving from workspace with one window triggered focus ipc event');
|
||||||
is($event->{current}->{name}, 'ws-right', 'focus event gave the right workspace');
|
is($event->{current}->{name}, 'ws-right', 'focus event gave the right workspace');
|
||||||
|
|
Loading…
Reference in New Issue