Skip to content

Commit 612500a

Browse files
authored
[nit] Fix typo (#3577)
1 parent e972340 commit 612500a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

browser_tests/tests/dialog.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,10 @@ test.describe('Signin dialog', () => {
360360
window['app'].extensionManager.dialog.showSignInDialog()
361361
})
362362

363-
const emailInput = comfyPage.page.locator('#comfy-org-sign-in-password')
364-
await emailInput.waitFor({ state: 'visible' })
365-
await emailInput.press('Control+v')
366-
await expect(emailInput).toHaveValue('test_password')
363+
const input = comfyPage.page.locator('#comfy-org-sign-in-password')
364+
await input.waitFor({ state: 'visible' })
365+
await input.press('Control+v')
366+
await expect(input).toHaveValue('test_password')
367367

368368
expect(await comfyPage.getNodes()).toHaveLength(nodeNum)
369369
})

0 commit comments

Comments
 (0)