This is an automated email from the ASF dual-hosted git repository. paulk pushed a commit to branch GROOVY_3_0_X in repository https://gitbox.apache.org/repos/asf/groovy.git
commit a6fe071c6eff4cd57ceebe17f55025322d5ad111 Author: Simon Tost <[email protected]> AuthorDate: Thu Sep 17 19:12:06 2020 +0200 GROOVY-9745: Remove wrong extra comments (closes #1372) --- .../groovy/groovy/xml/MarkupBuilderIllegalCharactersSpec.groovy | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subprojects/groovy-xml/src/test/groovy/groovy/xml/MarkupBuilderIllegalCharactersSpec.groovy b/subprojects/groovy-xml/src/test/groovy/groovy/xml/MarkupBuilderIllegalCharactersSpec.groovy index bd5e368..46bec48 100644 --- a/subprojects/groovy-xml/src/test/groovy/groovy/xml/MarkupBuilderIllegalCharactersSpec.groovy +++ b/subprojects/groovy-xml/src/test/groovy/groovy/xml/MarkupBuilderIllegalCharactersSpec.groovy @@ -60,7 +60,7 @@ class MarkupBuilderIllegalCharactersSpec extends Specification { 'ext control I' | true | extControl1 // Discouraged XML, not in HTML char references 'Next line NEL' | true | nextLine // Not in HTML char references 'ext control II' | true | extControl2 // Discouraged XML, not in HTML char references - 'Surrogates' | true | surrogates // Not necessarily XML, not in HTML char references + 'Surrogates' | true | surrogates // Not necessarily XML 'Non-characters I' | true | nonCharacters1 // Discouraged XML, not in HTML char references 'Non-characters II' | true | nonCharacters2 // Discouraged XML, not in HTML char references } @@ -92,7 +92,7 @@ class MarkupBuilderIllegalCharactersSpec extends Specification { 'ext control I' | false | extControl1 // Discouraged XML, not in HTML char references 'Next line NEL' | false | nextLine // Not in HTML char references 'ext control II' | false | extControl2 // Discouraged XML, not in HTML char references - 'Surrogates' | true | surrogates // Not necessarily XML, not in HTML char references + 'Surrogates' | true | surrogates // Not necessarily XML 'Non-characters I' | false | nonCharacters1 // Discouraged XML, not in HTML char references 'Non-characters II' | false | nonCharacters2 // Discouraged XML, not in HTML char references } @@ -122,7 +122,7 @@ class MarkupBuilderIllegalCharactersSpec extends Specification { 'ext control I' | false | extControl1 // Discouraged XML, not in HTML char references 'Next line NEL' | false | nextLine // Not in HTML char references 'ext control II' | false | extControl2 // Discouraged XML, not in HTML char references - 'Surrogates' | false | surrogates // Not necessarily XML, not in HTML char references + 'Surrogates' | false | surrogates // Not necessarily XML 'Non-characters I' | false | nonCharacters1 // Discouraged XML, not in HTML char references 'Non-characters II' | false | nonCharacters2 // Discouraged XML, not in HTML char references }
