Skip to content

Commit c5e0284

Browse files
committed
Fix tests after rebase
1 parent 82535e2 commit c5e0284

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages-exp/auth-exp/test/integration/webdriver/popup.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ browserDescribe('Popup IdP tests', driver => {
128128
// TODO: Convert this to the widget once unverified accounts work
129129
// Come back and verify error / prepare for link
130130
await expect(
131-
driver.call(PopupFunction.TRY_TO_SIGN_IN_UNVERIFIED, '"[email protected]"')
131+
driver.call(PopupFunction.TRY_TO_SIGN_IN_UNVERIFIED, '[email protected]')
132132
).to.be.rejected.and.eventually.have.property(
133133
'code',
134134
'auth/account-exists-with-different-credential'
@@ -154,12 +154,12 @@ browserDescribe('Popup IdP tests', driver => {
154154
// Create a couple existing users
155155
let cred: UserCredential = await driver.call(
156156
PopupFunction.CREATE_FAKE_GOOGLE_USER,
157-
157+
158158
);
159159
user1 = cred.user;
160160
cred = await driver.call(
161161
PopupFunction.CREATE_FAKE_GOOGLE_USER,
162-
162+
163163
);
164164
user2 = cred.user;
165165
await driver.call(CoreFunction.SIGN_OUT);

0 commit comments

Comments
 (0)