Skip to content

Commit

Permalink
Correct invalidCredentials so that it differs from validCredentialsEm…
Browse files Browse the repository at this point in the history
…ailVerified, unit test now passes as desired.

 - strongloop#944
  • Loading branch information
greaterweb committed Dec 22, 2014
1 parent 30a36ef commit b85435d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/user.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('User', function() {
var validCredentialsEmailVerified = {email: 'foo1@bar.com', password: 'bar1', emailVerified: true};
var validCredentialsEmailVerifiedOverREST = {email: 'foo2@bar.com', password: 'bar2', emailVerified: true};
var validCredentialsWithTTL = {email: 'foo@bar.com', password: 'bar', ttl: 3600};
var invalidCredentials = {email: 'foo1@bar.com', password: 'bar1'};
var invalidCredentials = {email: 'foo1@bar.com', password: 'invalid'};
var incompleteCredentials = {password: 'bar1'};

beforeEach(function() {
Expand Down

0 comments on commit b85435d

Please sign in to comment.