Skip to content

Commit e7007b4

Browse files
committed
fix test
1 parent c30b424 commit e7007b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/url.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ test "Url resolve size" {
120120
var url_string: [511]u8 = undefined; // Currently this is the largest url we support, it is however recommmended to at least support 2000 characters
121121
@memset(&url_string, 'a');
122122

123-
var buf: [2048]u8 = undefined; // This is approximately the required size to support the current largest supported URL
123+
var buf: [8192]u8 = undefined; // This is approximately the required size to support the current largest supported URL
124124
var fba = std.heap.FixedBufferAllocator.init(&buf);
125125
const out_url = try url.resolve(fba.allocator(), &url_string);
126126

0 commit comments

Comments
 (0)