We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c62896d commit e286056Copy full SHA for e286056
test/src/ht_kv_storage_service_test.dart
@@ -57,9 +57,9 @@ void main() {
57
),
58
).thenAnswer((_) async => false); // Return default
59
when(
60
- () => mockStorageService.readBool(key: any(named: 'key')),
61
- ) // Handle call without defaultValue
62
- .thenAnswer((_) async => false);
+ () => mockStorageService.readBool(key: any(named: 'key')),
+ ) // Handle call without defaultValue
+ .thenAnswer((_) async => false);
63
64
() => mockStorageService.writeInt(
65
key: any(named: 'key'),
0 commit comments