Skip to content

Commit 1ed03b3

Browse files
committed
Modified an existing test
ParseUser.get('password') used to return undefined, now password is not an attribute
1 parent a628b69 commit 1ed03b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration/test/ParseUserTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ describe('Parse User', () => {
505505
return user.save();
506506
})
507507
.then(() => {
508-
assert.equal(Object.keys(user.attributes).length, 6);
508+
assert.equal(Object.keys(user.attributes).length, 5);
509509
assert(user.attributes.hasOwnProperty('username'));
510510
assert(user.attributes.hasOwnProperty('email'));
511511
return user.destroy();

0 commit comments

Comments
 (0)