Skip to content

Commit 94b750d

Browse files
committed
fix linter
1 parent 2c5c5ee commit 94b750d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmark_comparison.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
},
8383
deep_nesting: {
8484
label: 'Deeply Nested (Stack Test)',
85-
input: '{"a":' * 50 + '1' + '}' * 50
85+
input: "#{'{"a":' * 50}1#{'}' * 50}"
8686
},
8787
unbalanced: {
8888
label: 'Truncated / Unbalanced',
@@ -94,7 +94,7 @@
9494
},
9595
large_array: {
9696
label: 'Large Single Array (Throughput)',
97-
input: '[' + (1..1000).map { |i| %({"id": #{i}, "val": "item_#{i}"}) }.join(',') + ']'
97+
input: "[#{(1..1000).map { |i| %({"id": #{i}, "val": "item_#{i}"}) }.join(',')}]"
9898
},
9999
concatenated_complex: {
100100
label: 'Concatenated + Broken (LLM Stream)',

0 commit comments

Comments
 (0)