Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
chloeYue committed Dec 2, 2024
1 parent f7a84e5 commit 2f63212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/page-objects/pages/home/asset-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ class AssetListPage {
}

async check_ifAssetIsVisible(assetName: string): Promise<boolean> {
const assets = await this.driver.findElements(this.tokenLisiItem);
const assets = await this.driver.findElements(this.tokenListItem);
for (const asset of assets) {
const text = await asset.getText();
if (text.includes(assetName)) {
Expand Down

0 comments on commit 2f63212

Please sign in to comment.