Skip to content

Commit

Permalink
update tests to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
ethan-tbd committed Jul 25, 2024
1 parent 7995327 commit 0fd4f11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/features/app/app_tabs_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void main() async {
).thenAnswer((_) async => {});

when(
() => mockTbdexService.getAccountBalance(pfis),
() => mockTbdexService.getAccountBalance(did, pfis),
).thenAnswer(
(_) async => accountBalance,
);
Expand Down
2 changes: 1 addition & 1 deletion test/features/app/app_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void main() async {
).thenAnswer((_) async => {});

when(
() => mockTbdexService.getAccountBalance(pfis),
() => mockTbdexService.getAccountBalance(did, pfis),
).thenAnswer(
(_) async => TestData.getAccountBalance(),
);
Expand Down
2 changes: 1 addition & 1 deletion test/features/home/home_page_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void main() async {
).thenAnswer((_) async => {});

when(
() => mockTbdexService.getAccountBalance(pfis),
() => mockTbdexService.getAccountBalance(did, pfis),
).thenAnswer(
(_) async => accountBalance,
);
Expand Down

0 comments on commit 0fd4f11

Please sign in to comment.