diff --git a/src/terminfo/ghostty.zig b/src/terminfo/ghostty.zig index f5d667b10..f755d4c7c 100644 --- a/src/terminfo/ghostty.zig +++ b/src/terminfo/ghostty.zig @@ -361,7 +361,7 @@ pub const ghostty: Source = .{ test "encode" { // Encode - var buf: [4096]u8 = undefined; + var buf: [1024 * 16]u8 = undefined; var buf_stream = std.io.fixedBufferStream(&buf); try ghostty.encode(buf_stream.writer()); try std.testing.expect(buf_stream.getWritten().len > 0);