From 8fec68ab4d58788d312479ce5e29cd5065ea5c2f Mon Sep 17 00:00:00 2001 From: parodyBit Date: Tue, 15 Aug 2023 20:27:29 -0600 Subject: [PATCH] Update(e2e): e2e_mnemomic_test comments --- integration_test/e2e_mnemonic_test.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/integration_test/e2e_mnemonic_test.dart b/integration_test/e2e_mnemonic_test.dart index b5c61cea7..9ab3d2008 100644 --- a/integration_test/e2e_mnemonic_test.dart +++ b/integration_test/e2e_mnemonic_test.dart @@ -55,11 +55,12 @@ Future e2eImportMnemonicTest(WidgetTester tester) async { await tapButton(tester, "Continue"); } - /// Verify the imported wallet and the current address + /// Get the currentWallet loaded in the dashboard final DashboardScreenState dashboardScreenState = tester.state(widgetByType(DashboardScreen)); dashboardScreenState.currentWallet!.printDebug(); Wallet? currentWallet = dashboardScreenState.currentWallet; + /// Verify the imported wallet and the current address expect(currentWallet!.externalAccounts[0]!.address, "wit174la8pevl74hczcpfepgmt036zkmjen4hu8zzs"); }