From 8499f7b4f803f033f6ebc4988d98a2e303d0c397 Mon Sep 17 00:00:00 2001 From: Filip Andersson <17986183+FilipAndersson245@users.noreply.github.com> Date: Tue, 26 Mar 2024 20:37:46 +0100 Subject: [PATCH] Fixes broken bench (#12297) # Description # User-Facing Changes # Tests + Formatting # After Submitting --- benches/benchmarks.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benches/benchmarks.rs b/benches/benchmarks.rs index b656e09858..913c87e899 100644 --- a/benches/benchmarks.rs +++ b/benches/benchmarks.rs @@ -145,7 +145,7 @@ mod record { fn create_nested_record_string(depth: i32) -> String { let mut s = String::from("let record = {"); for _ in 0..depth { - s.push_str("col: {{"); + s.push_str("col: {"); } s.push_str("col_final: 0"); for _ in 0..depth {