fix failing test

This commit is contained in:
Emil Lerch 2026-01-12 11:21:12 -08:00
parent 5c00c36802
commit 4c678c1f7e
Signed by: lobo
GPG key ID: A7B62D657EF764F8

View file

@ -459,7 +459,7 @@ test "parseAnsiColor codes" {
try std.testing.expectEqual(@as(u8, 188), green.g); try std.testing.expectEqual(@as(u8, 188), green.g);
const reset = parseAnsiColor(0, red); const reset = parseAnsiColor(0, red);
try std.testing.expectEqual(@as(u8, 0), reset.r); // Reset to black try std.testing.expectEqual(@as(u8, 255), reset.r); // Reset to white
} }
test "isSymbol detects nerd font ranges" { test "isSymbol detects nerd font ranges" {