Skip to content

Commit

Permalink
modules_tests: properly close tags
Browse files Browse the repository at this point in the history
  • Loading branch information
amroamroamro authored and mikesamuel committed Jan 26, 2017
1 parent 2e91cf6 commit 72fb21c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/extractSourceSpans_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h1>Extract Source Spans Test</h1>
<tr><th colspan="3">Test whitespace normalized in code</th></tr>
<tr>
<td><code class="testinput"><b>print </b>'Hello '
+ '&lt;World&gt;';</pre></td>
+ '&lt;World&gt;';</code></td>
<td class="golden"><pre>^print ^'Hello ' + '&lt;World&gt;';^</pre></td>
</tr>
<tr><th colspan="3">Test XMP</th></tr>
Expand All @@ -43,7 +43,7 @@ <h1>Extract Source Spans Test</h1>
</tr>
<tr><th colspan="3">Test number lines output</th></tr>
<tr>
<td><pre class="testinput"><ul><li><b>print </b>'Hello '</li><li> + '&lt;World&gt;';</pre></li></ul></td>
<td><pre class="testinput"><ul><li><b>print </b>'Hello '</li><li> + '&lt;World&gt;';</li></ul></pre></td>
<td class="golden"><pre>^print ^'Hello '^\n^ + '&lt;World&gt;';^^</pre></td>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion tests/numberLines_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h1>Number Lines Test</h1>
<tr><th colspan="3">Test line breaks with followers</th></tr>
<tr>
<td><pre class="testinput"><b>Hello,&#10;there&#10;World!&#10;</b><button>OK</button></pre></td>
<td><pre><ol class="linenums"><li class="L0"><b>Hello,</b></li><li class="L1"><b>there</b></li><li class="L2"><b>World!</b></li><li class="L3"><button>OK</button></ol></pre></td>
<td><pre><ol class="linenums"><li class="L0"><b>Hello,</b></li><li class="L1"><b>there</b></li><li class="L2"><b>World!</b></li><li class="L3"><button>OK</button></li></ol></pre></td>
</tr>
<tr><th colspan="3">Test nocode</th></tr>
<tr>
Expand Down

0 comments on commit 72fb21c

Please sign in to comment.