Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriele-tomassetti committed Aug 16, 2023
1 parent f992a05 commit a9d7bcc
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,11 @@ class JsonGenerationTest {
null,
)
val writer = StringWriter()
JsonGenerator().generateJSONWithStreaming(result = originalResult, writer = JsonWriter(writer), shortClassNames = true)
JsonGenerator().generateJSONWithStreaming(
result = originalResult,
writer = JsonWriter(writer),
shortClassNames = true
)
val json = writer.toString()
assertEquals(
"""{"issues":[{"type":"LEXICAL","message":"foo","severity":"ERROR","position":{"description":"Position(start=Line 1, Column 10,
Expand Down

0 comments on commit a9d7bcc

Please sign in to comment.