Skip to content

Commit

Permalink
std::encoding::json: update bigHead test case
Browse files Browse the repository at this point in the history
  • Loading branch information
mertcandav committed Aug 18, 2024
1 parent a39e814 commit 06b0226
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/encoding/json/encode_test.jule
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ fn init() {
// Build pseudo big JSON.
bigHead = &encodeTree{}
mut it := bigHead
mut i := 0
for i < 3850; i++ {
mut i := 1
for i < maxNestingDepth; i++ {
it.Str1 = "FooBarBaz"
it.Str2 = "BazBarFoo"
it.Num1 = 22
Expand Down

0 comments on commit 06b0226

Please sign in to comment.