From e0d747d93a15105bce161f8673ffe4e99f48f23a Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sun, 28 Dec 2025 03:25:44 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- src/valkey/valkey_protocol.zig | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/valkey/valkey_protocol.zig b/src/valkey/valkey_protocol.zig index c37d9034f5..d24ee4ff83 100644 --- a/src/valkey/valkey_protocol.zig +++ b/src/valkey/valkey_protocol.zig @@ -683,12 +683,6 @@ pub const SubscriptionPushMessage = enum(u2) { }); }; -const std = @import("std"); - -const bun = @import("bun"); -const String = bun.String; -const jsc = bun.jsc; - test "ValkeyReader rejects deeply nested arrays" { // Build a deeply nested array payload that exceeds max_resp_depth // Format: "*1\r\n" repeated (max_resp_depth + 10) times, followed by "+OK\r\n" @@ -788,3 +782,9 @@ test "ValkeyReader rejects deeply nested sets" { try std.testing.expectError(error.RecursionLimitExceeded, result); } + +const std = @import("std"); + +const bun = @import("bun"); +const String = bun.String; +const jsc = bun.jsc;