Fix tests

This commit is contained in:
Rodrigo Fernandes 2016-04-25 15:52:20 +01:00
parent 50bbca6cc2
commit 0261b30a26
No known key found for this signature in database
GPG key ID: 08E3C5F38969078E

View file

@ -15,7 +15,7 @@ describe('LineByLinePrinter', function() {
' File without changes\n' + ' File without changes\n' +
' </div>\n' + ' </div>\n' +
' </td>\n' + ' </td>\n' +
'</tr>\n'; '</tr>';
assert.equal(expected, fileHtml); assert.equal(expected, fileHtml);
}); });
@ -39,7 +39,7 @@ describe('LineByLinePrinter', function() {
' <span class="d2h-code-line-ctn">+</span>\n' + ' <span class="d2h-code-line-ctn">+</span>\n' +
' </div>\n' + ' </div>\n' +
' </td>\n' + ' </td>\n' +
'</tr>\n'; '</tr>';
assert.equal(expected, fileHtml); assert.equal(expected, fileHtml);
}); });
@ -61,7 +61,7 @@ describe('LineByLinePrinter', function() {
' <span class="d2h-code-line-ctn">-</span>\n' + ' <span class="d2h-code-line-ctn">-</span>\n' +
' </div>\n' + ' </div>\n' +
' </td>\n' + ' </td>\n' +
'</tr>\n'; '</tr>';
assert.equal(expected, fileHtml); assert.equal(expected, fileHtml);
}); });
@ -83,7 +83,7 @@ describe('LineByLinePrinter', function() {
' <span class="d2h-code-line-ctn">+</span>\n' + ' <span class="d2h-code-line-ctn">+</span>\n' +
' </div>\n' + ' </div>\n' +
' </td>\n' + ' </td>\n' +
'</tr>\n'; '</tr>';
assert.equal(expected, fileHtml); assert.equal(expected, fileHtml);
}); });
@ -105,7 +105,7 @@ describe('LineByLinePrinter', function() {
' <span class="d2h-code-line-ctn">+</span>\n' + ' <span class="d2h-code-line-ctn">+</span>\n' +
' </div>\n' + ' </div>\n' +
' </td>\n' + ' </td>\n' +
'</tr>\n'; '</tr>';
assert.equal(expected, fileHtml); assert.equal(expected, fileHtml);
}); });
@ -127,7 +127,7 @@ describe('LineByLinePrinter', function() {
' <span class="d2h-code-line-ctn">+</span>\n' + ' <span class="d2h-code-line-ctn">+</span>\n' +
' </div>\n' + ' </div>\n' +
' </td>\n' + ' </td>\n' +
'</tr>\n'; '</tr>';
assert.equal(expected, fileHtml); assert.equal(expected, fileHtml);
}); });