Skip to content

Commit 496e31c

Browse files
committed
Modified a test
ParseUser.get('password') used to be undefined. Now, password is not an attribute
1 parent 49e7974 commit 496e31c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/ParseUser.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ describe('Parse.User testing', () => {
793793

794794
user.set('username', 'test');
795795
await user.save();
796-
equal(Object.keys(user.attributes).length, 6);
796+
equal(Object.keys(user.attributes).length, 5);
797797
ok(user.attributes['username']);
798798
ok(user.attributes['email']);
799799
await user.destroy();

0 commit comments

Comments
 (0)