1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00

Fix typo in from-import-ui.spec.js (#13369)

This commit is contained in:
sooyoung 2022-01-22 00:54:03 +09:00 committed by GitHub
parent db0230f23a
commit 4c8ea8fdbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -284,10 +284,10 @@ describe('Metamask Import UI', function () {
await driver.delay(regularDelayMs);
await driver.clickElement('.account-menu__icon');
const accountListItemsAgfterRemoval = await driver.findElements(
const accountListItemsAfterRemoval = await driver.findElements(
'.account-menu__account',
);
assert.equal(accountListItemsAgfterRemoval.length, 4);
assert.equal(accountListItemsAfterRemoval.length, 4);
},
);
});