From 6fd0a807788e53e5452fcb86ec08035edb8b1e70 Mon Sep 17 00:00:00 2001 From: Arjun Radhakrishna Date: Wed, 26 Sep 2018 15:42:59 -0700 Subject: [PATCH] Reformat long string --- notebook/tests/notebook/markdown.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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){