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

Commit

Permalink
Merge pull request #645 from djorak/patch-1
Browse files Browse the repository at this point in the history
JSHint test failing because of missing semicolon
  • Loading branch information
lirantal committed Jul 12, 2015
2 parents d9c15e2 + c572ed7 commit 6d199a5
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 6d199a5

Please sign in to comment.