Skip to content

Commit

Permalink
fix typos in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb committed Nov 12, 2024
1 parent 55d5121 commit c3b0e8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/test_driver/app/profile/profile_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Future<void> getNextPhase(FlutterDriver driver) async {
await tapNextPhase(driver);
}

Future<void> checkPeputationCount(FlutterDriver driver, int count) async {
Future<void> checkReputationCount(FlutterDriver driver, int count) async {
await driver.waitFor(find.text('$count'));
}

Expand Down
8 changes: 4 additions & 4 deletions app/test_driver/app_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ void main() async {

test('Go to Profile Page and Check reputation count', () async {
await goToProfileViewFromNavBar(driver);
await checkPeputationCount(driver, 2);
await checkReputationCount(driver, 2);
}, timeout: timeout240);

test('Get Registering phase', () async {
Expand All @@ -253,7 +253,7 @@ void main() async {
await sendEndorse(driver);
}, timeout: timeout240);

test('send money to account from Bootstraper account', () async {
test('send money to account from Bootstrapper account', () async {
await senMoneyToContact(driver);
await sendMoneyToSelectedAccount(driver, '0.2');
await goToHomeViewFromNavBar(driver);
Expand All @@ -270,7 +270,7 @@ void main() async {
await verifyInputPin(driver);
}, timeout: timeout240);

test('create niewbie Account', () async {
test('create newbie Account', () async {
await goToHomeViewFromNavBar(driver);
await goToAddAcoountViewFromPanel(driver);
await createNewbieAccount(driver, 'Li');
Expand Down Expand Up @@ -353,7 +353,7 @@ void main() async {
await verifyInputPin(driver);
}, timeout: timeout240);

test('import account with menemonic phrase', () async {
test('import account with mnemonic phrase', () async {
await goToHomeViewFromNavBar(driver);
await goToAddAcoountViewFromPanel(driver);
await importAccount(driver, 'Bob', menemonic);
Expand Down

0 comments on commit c3b0e8c

Please sign in to comment.