diff --git a/src/Microdown-PrettyPrinter-Tests/MicTextualMicrodownExporterTest.class.st b/src/Microdown-PrettyPrinter-Tests/MicTextualMicrodownExporterTest.class.st index 5a1456af..07f268ea 100644 --- a/src/Microdown-PrettyPrinter-Tests/MicTextualMicrodownExporterTest.class.st +++ b/src/Microdown-PrettyPrinter-Tests/MicTextualMicrodownExporterTest.class.st @@ -73,6 +73,7 @@ MicTextualMicrodownExporterTest >> testAnnotated [ mic := parser parse: factory annotatedSample. self assert: (mic accept: visitor) contents equals: '>[!note] > label Foo _bar_ + ' ] diff --git a/src/Microdown-Tests/MicMicrodownTextualBuilderTest.class.st b/src/Microdown-Tests/MicMicrodownTextualBuilderTest.class.st index 1ea8e30b..f015d7e9 100644 --- a/src/Microdown-Tests/MicMicrodownTextualBuilderTest.class.st +++ b/src/Microdown-Tests/MicMicrodownTextualBuilderTest.class.st @@ -53,7 +53,7 @@ MicMicrodownTextualBuilderTest >> testAnchorReference [ MicMicrodownTextualBuilderTest >> testAnnotated [ self assert: (builder annotated: 'anAnnotation' paragraph: [ builder text: 'anAnnotatedParagraph' ]) contents equals: '>[!anAnnotation] -> anAnnotatedParagraph', String cr +> anAnnotatedParagraph', String cr, String cr ] { #category : 'tests - anchor' }