Skip to content

Commit

Permalink
Fix tests for th approach
Browse files Browse the repository at this point in the history
  • Loading branch information
kball committed Mar 12, 2016
1 parent 8b040fe commit 0cb0e2a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/components.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ describe('Menu', () => {
var expected = `
<table class="menu">
<tr>
<td><a href="http://zurb.com">Item</a></td>
<th><a href="http://zurb.com">Item</a></th>
</tr>
</table>
`;
Expand Down Expand Up @@ -142,13 +142,13 @@ describe('Menu', () => {
var expected = `
<table class="menu vertical">
<tr>
<td>
<th>
<table class="menu-item">
<tr>
<td><a href="#abc">ABC</a></td>
<th><a href="#abc">ABC</a></th>
</tr>
</table>
</td>
</th>
</tr>
</table>
`;
Expand Down

0 comments on commit 0cb0e2a

Please sign in to comment.