File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
flutter_cache_manager/test Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -231,8 +231,7 @@ void main() {
231231
232232MockCacheStore _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 ,
You can’t perform that action at this time.
0 commit comments