Skip to content

Commit

Permalink
Fixing all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducasse committed Nov 3, 2024
1 parent c80c370 commit b70b921
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -451,9 +451,9 @@ MicAbstractLaTexWriterTest >> testParagraphWithNested [
{ #category : 'tests' }
MicAbstractLaTexWriterTest >> testQuote [

self parse: factory quoteSample andCheckWeGet: '\begin{verbatim}', newLine ,
self parse: factory quoteSample andCheckWeGet: newLine, '\begin{quote}', newLine ,
'Foo', newLine ,
'\end{verbatim}', newLine
'\end{quote}', newLine
]

{ #category : 'tests - figure/link' }
Expand Down
4 changes: 3 additions & 1 deletion src/Microdown-LaTeXExporter/MicLaTeXWriter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,9 @@ MicLaTeXWriter >> visitQuote: aQuote [
canvas newLine.
canvas environment
name: 'quote';
with: [ aQuote children do: [ :each | each accept: self ] ].
with: [
aQuote children do: [ :each | each accept: self ].
canvas newLine.].

]

Expand Down

0 comments on commit b70b921

Please sign in to comment.