diff --git a/integration_test/e2e_show_node_stats.dart b/integration_test/e2e_show_node_stats.dart index 50f122be..b99def12 100644 --- a/integration_test/e2e_show_node_stats.dart +++ b/integration_test/e2e_show_node_stats.dart @@ -78,13 +78,13 @@ Future e2eShowNodeStatsTest(WidgetTester tester) async { final listFinder = find .byType(Scrollable) .first; // take first because it is the wallet list scroll - await tester.scrollUntilVisible(find.text("wit174l...4hu8zzs"), -100.0, + await tester.scrollUntilVisible(find.text("wit174l…4hu8zzs"), -100.0, scrollable: listFinder); await tester.pumpAndSettle(); /// Select HD wallet from the wallets list - await tapButton(tester, "wit174l...4hu8zzs"); + await tapButton(tester, "wit174l…4hu8zzs"); await tester.pumpAndSettle(); diff --git a/integration_test/e2e_update_wallet_test.dart b/integration_test/e2e_update_wallet_test.dart index aec33728..e59db9f9 100644 --- a/integration_test/e2e_update_wallet_test.dart +++ b/integration_test/e2e_update_wallet_test.dart @@ -87,7 +87,7 @@ Future e2eUpdateCurrentWalletTest(WidgetTester tester) async { await tester.pumpAndSettle(); /// Select Node wallet from the wallets list - await tapButton(tester, "wit1vzm...2tya50u"); + await tapButton(tester, "wit1vzm…2tya50u"); await tester.pumpAndSettle(); @@ -100,6 +100,6 @@ Future e2eUpdateCurrentWalletTest(WidgetTester tester) async { /// Verify the imported wallet and the current address expectLater(currentWallet3!.masterAccount!.address.cropMiddle(18), - "wit1vzm...2tya50u"); + "wit1vzm…2tya50u"); await teardownTest(); }