Skip to content

Commit

Permalink
Fixed assertion in CommonJS test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Robinson committed Jan 23, 2010
1 parent 082e1b3 commit def2008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test-commonjs.js
Expand Up @@ -15,7 +15,7 @@ FILE.glob("test/*.haml").forEach(function(hamlFile) {
var js = Haml.compile(haml);
var js_opt = Haml.optimize(js);
var actual = Haml.execute(js_opt, scope.context, scope.locals);
ASSERT.eq(actual, expected);
ASSERT.equal(actual, expected);
}
});

Expand Down

0 comments on commit def2008

Please sign in to comment.