This is an automated email from the ASF dual-hosted git repository. paulk pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy.git
commit 49a01fc1db5b2ec49dda4a438a84596bf572d711 Author: Paul King <[email protected]> AuthorDate: Fri Nov 27 14:52:31 2020 +1000 remove whitespace --- .../groovy-json/src/spec/test/json/StreamingJsonBuilderTest.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/groovy-json/src/spec/test/json/StreamingJsonBuilderTest.groovy b/subprojects/groovy-json/src/spec/test/json/StreamingJsonBuilderTest.groovy index a54c5ed..b34cbdf 100644 --- a/subprojects/groovy-json/src/spec/test/json/StreamingJsonBuilderTest.groovy +++ b/subprojects/groovy-json/src/spec/test/json/StreamingJsonBuilderTest.groovy @@ -45,7 +45,7 @@ class StreamingJsonBuilderTest extends GroovyTestCase { } ''' // end::json_string[] - + // tag::streaming_json_builder[] StringWriter writer = new StringWriter() StreamingJsonBuilder builder = new StreamingJsonBuilder(writer) @@ -63,7 +63,7 @@ class StreamingJsonBuilderTest extends GroovyTestCase { } String json = JsonOutput.prettyPrint(writer.toString()) // end::streaming_json_builder[] - + // tag::json_assert[] JsonAssert.assertJsonEquals(json, carRecords) // end::json_assert[]
