Skip to content

Commit a680b22

Browse files
Update spec/AuthenticationAdapters.spec.js
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Nikhil Sharma <[email protected]>
1 parent 2257684 commit a680b22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/AuthenticationAdapters.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1751,7 +1751,7 @@ describe('OTP SMS auth adatper', () => {
17511751
it('can enroll', async () => {
17521752
const user = await Parse.User.signUp('username', 'password');
17531753
const spy = spyOn(mfa, 'sendSMS').and.callThrough();
1754-
await user.save({ authData: { mfa: { mobile: '+11111111111' } } }, { useMasterKey:true });
1754+
await user.save({ authData: { mfa: { mobile: '+11111111111' } } }, { useMasterKey: true });
17551755
await user.fetch({ sessionToken: user.getSessionToken() });
17561756
expect(user.get('authData')).toEqual({ mfa: { status: 'disabled' } });
17571757
expect(spy).toHaveBeenCalledWith(code, '+11111111111');

0 commit comments

Comments
 (0)