From f76b573a0b2257dc497aec553449f5bcdee95e49 Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Mon, 10 Jun 2024 14:17:48 -0500 Subject: [PATCH] parser: fix remaining decrpm test This test was passing because it's not meant to find the event. However it was still using the wrong input --- src/Parser.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parser.zig b/src/Parser.zig index adaeacb..dc4aebb 100644 --- a/src/Parser.zig +++ b/src/Parser.zig @@ -985,7 +985,7 @@ test "parse(csi): decrpm" { try testing.expectEqual(expected.event, result.event); } { - const input = "\x1b[1016;0y"; + const input = "\x1b[?1016;0$y"; const result = parseCsi(input, &buf); const expected: Result = .{ .event = null,