Skip to content

Commit c835a95

Browse files
committed
formatting
1 parent 1b90601 commit c835a95

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

flutter_cache_manager/test/cache_manager_test.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,8 +489,7 @@ void main() {
489489
var fileUrl = 'baseflow.com/test';
490490

491491
var store = MockCacheStore();
492-
when(store.putFile(argThat(anything)))
493-
.thenAnswer((_) => Future.value());
492+
when(store.putFile(argThat(anything))).thenAnswer((_) => Future.value());
494493

495494
when(store.getFile(fileUrl)).thenAnswer((_) => Future.value(null));
496495

flutter_cache_manager/test/web_helper_test.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,7 @@ void main() {
231231

232232
MockCacheStore _createStore(Config config) {
233233
final store = MockCacheStore();
234-
when(store.putFile(argThat(anything)))
235-
.thenAnswer((_) => Future.value());
234+
when(store.putFile(argThat(anything))).thenAnswer((_) => Future.value());
236235
when(store.retrieveCacheData(argThat(anything)))
237236
.thenAnswer((invocation) => Future.value(CacheObject(
238237
invocation.positionalArguments.first as String,

0 commit comments

Comments
 (0)