@@ -233,7 +233,7 @@ def test_output_push_and_pop():
233233 with kitty_keyboard_protocol (out ):
234234 pass
235235 out .flush ()
236- assert buf .getvalue () == "\x1b [=1; 1u\x1b [<u"
236+ assert buf .getvalue () == "\x1b [> 1u\x1b [<u"
237237
238238
239239def test_output_custom_flags ():
@@ -242,7 +242,7 @@ def test_output_custom_flags():
242242 with kitty_keyboard_protocol (out , flags = flags ):
243243 pass
244244 out .flush ()
245- assert buf .getvalue () == f"\x1b [= { flags } ;1u \x1b [<u"
245+ assert buf .getvalue () == f"\x1b [> { flags } u \x1b [<u"
246246
247247
248248def test_output_nested_does_not_double_push ():
@@ -252,7 +252,7 @@ def test_output_nested_does_not_double_push():
252252 pass
253253 out .flush ()
254254 # Push once, pop once — nested enter is invisible at the wire level.
255- assert buf .getvalue () == "\x1b [=1; 1u\x1b [<u"
255+ assert buf .getvalue () == "\x1b [> 1u\x1b [<u"
256256
257257
258258def test_output_pop_on_exception ():
@@ -270,7 +270,7 @@ def test_output_push_is_flushed_before_yield():
270270 # stuck in the output buffer.
271271 buf , out = _buf_output ()
272272 with kitty_keyboard_protocol (out ):
273- assert "\x1b [=1; 1u" in buf .getvalue ()
273+ assert "\x1b [> 1u" in buf .getvalue ()
274274
275275
276276def test_output_nested_with_mismatched_flags_raises ():
0 commit comments