Skip to content

Commit

Permalink
remove callback execution for sync engines
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexej Yaroshevich committed Nov 25, 2014
1 parent ebb1c6b commit c699be8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/assets/tmpl-spec.jst
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,11 @@ describe('${ describe }', function() {
}); <% }); %>
});
function assertHtml(actual, expected, done) {
function assertHtml(actual, expected) {
if (htmlDiffer.isEqual(actual, expected)) {
assert.ok(actual);
done();
} else {
assert.fail(actual, expected, null, '\n');
done('fail');
}
}
Expand Down

0 comments on commit c699be8

Please sign in to comment.