t/294-focus-order.t: fix mark command (needs to use id=)

related to https://github.com/i3/i3/issues/3009
This commit is contained in:
Michael Stapelberg
2025-12-22 15:55:58 +01:00
committed by Michael Stapelberg
parent 071aa15e51
commit 92345804dc

View File

@ -297,7 +297,7 @@ cmp_tree(
layout_before => 'S[a b] V[2 3 T[4 5* 6]]', layout_before => 'S[a b] V[2 3 T[4 5* 6]]',
layout_after => 'S[a b*]', layout_after => 'S[a b*]',
cb => sub { cb => sub {
cmd '[class=' . $_[0][3]->id . '] mark 3'; cmd '[id=' . $_[0][3]->id . '] mark 3';
cmd 'move to mark 3'; cmd 'move to mark 3';
$windows[0] = $_[0][5]; $windows[0] = $_[0][5];