Skip to content

Commit bd77df2

Browse files
committed
PR feedback
1 parent f5c844f commit bd77df2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ browserDescribe('WebDriver redirect IdP test', driver => {
3434
await widget.fillEmail('[email protected]');
3535
await widget.fillDisplayName('Bob Test');
3636
await widget.fillScreenName('bob.test');
37-
await widget.fillProfilePhoto('bob.test/bob');
37+
await widget.fillProfilePhoto('http://bob.test/bob.png');
3838
await widget.clickSignIn();
3939

4040
await driver.reinitOnRedirect();
4141

4242
const currentUser = await driver.getUserSnapshot();
4343
expect(currentUser.email).to.eq('[email protected]');
4444
expect(currentUser.displayName).to.eq('Bob Test');
45-
expect(currentUser.photoURL).to.eq('bob.test/bob');
45+
expect(currentUser.photoURL).to.eq('http://bob.test/bob.png');
4646

4747
const redirectResult: UserCredential = await driver.call(
4848
TestFunction.REDIRECT_RESULT

0 commit comments

Comments
 (0)