diff --git a/e2e/specs/assets/import-tokens.spec.js b/e2e/specs/assets/import-tokens.spec.js index de062d7fa3e..ba531cdc500 100644 --- a/e2e/specs/assets/import-tokens.spec.js +++ b/e2e/specs/assets/import-tokens.spec.js @@ -33,20 +33,20 @@ describe(SmokeCore('Import Tokens'), () => { it('should add a token via token autocomplete', async () => { await WalletView.tapImportTokensButton(); - // Search for XRPL but select XRP20 - await ImportTokensView.typeInTokenName('XRPL'); + // Search for SNX + await ImportTokensView.typeInTokenName('SNX'); await TestHelpers.delay(2000); await ImportTokensView.tapOnToken(); // taps the first token in the returned list await TestHelpers.delay(500); await ImportTokensView.tapImportButton(); await WalletView.isVisible(); await TestHelpers.delay(8000); // to prevent flakey behavior in bitrise - await WalletView.isTokenVisibleInWallet('0 XRP'); + await WalletView.isTokenVisibleInWallet('0 SNX'); }); it('should hide token from Wallet view', async () => { - await WalletView.removeTokenFromWallet('0 XRP'); + await WalletView.removeTokenFromWallet('0 SNX'); await TestHelpers.delay(1500); - await WalletView.tokenIsNotVisibleInWallet('XRP'); + await WalletView.tokenIsNotVisibleInWallet('SNX'); }); });