t/516-move: use window id, fix typo

This commit is contained in:
Michael Stapelberg 2013-11-19 20:28:32 +01:00
parent 9f955a1e01
commit ca39289e3e
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ my $social_window = open_window( name => 'CORRECT_WINDOW' );
cmd('move right'); cmd('move right');
is(scalar @{get_ws_content('right-top')}, 1, 'moved some window to right-top workspace'); is(scalar @{get_ws_content('right-top')}, 1, 'moved some window to right-top workspace');
my $compare_window = shift @{get_ws_content('right-top')}; my $compare_window = shift @{get_ws_content('right-top')};
is($compare_window->{name}, $social_window->name, 'moved correct window to right-top workspace'); is($compare_window->{window}, $social_window->id, 'moved correct window to right-top workspace');
# unamp the first window so we don't confuse it when we move back here # unmap the first window so we don't confuse it when we move back here
$first_window->unmap; $first_window->unmap;
wait_for_unmap; wait_for_unmap;