Skip to content

Commit 7eb6e29

Browse files
committed
Fix spurious newline in expected result
1 parent 4395a83 commit 7eb6e29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebook/tests/notebook/markdown.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ casper.notebook_test(function () {
106106
codeblock = '```python\ns = "$"\nt = "$"\n```'
107107
result = '<pre><code class="cm-s-ipython language-python">' +
108108
'<span class="cm-variable">s</span> <span class="cm-operator">=</span> <span class="cm-string">"$"</span>\n' +
109-
'<span class="cm-variable">t</span> <span class="cm-operator">=</span> <span class="cm-string">"$"</span></code></pre>\n';
109+
'<span class="cm-variable">t</span> <span class="cm-operator">=</span> <span class="cm-string">"$"</span></code></pre>';
110110
md_render_test(codeblock, result, 'Markdown code block python');
111111

112112
function mathjax_render_test(input_string, result, message){

0 commit comments

Comments
 (0)