Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
plokhotnyuk committed Dec 30, 2024
1 parent 6df8219 commit d865f84
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1463,8 +1463,11 @@ object JsonCodecSpec extends ZIOSpecDefault {
assertEncodesThenDecodes(AllOptionalFields.schema, AllOptionalFields(None, None, None))
},
test("recursive data structure")(
assertDecodes(Schema[Recursive], Recursive(Some(Recursive(None))),
charSequenceToByteChunk("""{"n":{"n":null}}"""))
assertDecodes(
Schema[Recursive],
Recursive(Some(Recursive(None))),
charSequenceToByteChunk("""{"n":{"n":null}}""")
)
)
),
suite("record")(
Expand Down

0 comments on commit d865f84

Please sign in to comment.