Skip to content

Commit

Permalink
test: Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChV committed Oct 14, 2023
1 parent ef66932 commit 44a364a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/paulonia_cache_image_mobile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,8 @@ class PCacheImageService {
'1NzMxNDI2*_ga_CW55HF8NVT*MTY5NzMwMzY3My4zMTYuMS4xNjk3MzA2MzYzLjUy'
'LjAuMA..';
}
// coverage:ignore-line
return FirebaseStorage.instance.refFromURL(gsUrl).getDownloadURL();
return FirebaseStorage.instance // coverage:ignore-line
.refFromURL(gsUrl)
.getDownloadURL();
}
}

0 comments on commit 44a364a

Please sign in to comment.