fix: update keybind test case for zig-0.15

This commit is contained in:
CJ van den Berg 2025-09-26 21:05:50 +02:00
parent f90d486eae
commit 65414d2d73
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -804,7 +804,7 @@ test "parse" {
const actual: []const KeyEvent = parsed; const actual: []const KeyEvent = parsed;
try expectEqual(expected.len, actual.len); try expectEqual(expected.len, actual.len);
for (expected, 0..) |expected_event, i| { for (expected, 0..) |expected_event, i| {
try std.testing.expectFmt(expected_event, "{}", .{actual[i]}); try std.testing.expectFmt(expected_event, "{f}", .{actual[i]});
} }
} }
} }