Skip to content

Commit

Permalink
fix electrumx getUsedCoinSerials test
Browse files Browse the repository at this point in the history
  • Loading branch information
sneurlax committed Jan 26, 2024
1 parent 9cd452f commit 6846bbb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/electrumx_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -985,8 +985,8 @@ void main() {

expect(result, GetUsedSerialsSampleData.serials);

verify(mockPrefs.wifiOnly).called(1);
verify(mockPrefs.useTor).called(1);
verify(mockPrefs.wifiOnly).called(3);
verify(mockPrefs.useTor).called(3);
verifyNoMoreInteractions(mockPrefs);
});

Expand Down Expand Up @@ -1298,8 +1298,8 @@ void main() {

expect(result, GetUsedSerialsSampleData.serials);

verify(mockPrefs.wifiOnly).called(1);
verify(mockPrefs.useTor).called(1);
verify(mockPrefs.wifiOnly).called(3);
verify(mockPrefs.useTor).called(3);
verifyNoMoreInteractions(mockPrefs);
});

Expand Down

0 comments on commit 6846bbb

Please sign in to comment.