From 66c1566eeba6d976138b679654e01c3eceed88ee Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Mon, 22 Mar 2021 20:10:39 +0900 Subject: [PATCH] static analysis fix --- test/model/filters_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/model/filters_test.dart b/test/model/filters_test.dart index e1412de03..2e12a3422 100644 --- a/test/model/filters_test.dart +++ b/test/model/filters_test.dart @@ -15,7 +15,7 @@ void main() { final album = AlbumFilter('path/to/album', 'album'); expect(album, jsonRoundTrip(album)); - final fav = FavouriteFilter.instance; + const fav = FavouriteFilter.instance; expect(fav, jsonRoundTrip(fav)); final location = LocationFilter(LocationLevel.country, 'France${LocationFilter.locationSeparator}FR');