Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
JSHint test failing because of missing semicolon
Browse files Browse the repository at this point in the history
I just cloned the branch and both gulp and grunt fail on the lint task because of the missing semicolon.
  • Loading branch information
djorak committed Jul 12, 2015
1 parent d9c15e2 commit c572ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/users/tests/server/user.server.model.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describe('User Model Unit Tests:', function() {
user.firstName = 'test';
var passwordBefore = user.password;
return user.save(function(err) {
var passwordAfter = user.password
var passwordAfter = user.password;
passwordBefore.should.equal(passwordAfter);
done();
});
Expand Down

0 comments on commit c572ed7

Please sign in to comment.