diff --git a/notebook/tests/notebook/markdown.js b/notebook/tests/notebook/markdown.js index cc59f5f25..9836b054b 100644 --- a/notebook/tests/notebook/markdown.js +++ b/notebook/tests/notebook/markdown.js @@ -104,7 +104,9 @@ casper.notebook_test(function () { md_render_test(codeblock, result, 'Markdown code block unknown language'); codeblock = '```python\ns = "$"\nt = "$"\n```' - result = '
s = "$"\nt = "$"\n';
+ result = '' +
+ 's = "$"\n' +
+ 't = "$"\n';
md_render_test(codeblock, result, 'Markdown code block python');
function mathjax_render_test(input_string, result, message){