Skip to content

Commit

Permalink
chore(flutter_infinite_list): add missing const
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed Oct 9, 2021
1 parent c0dfa6f commit e8be063
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ void main() {
posts: mockPosts,
),
act: (bloc) => bloc.add(PostFetched()),
expect: () => <PostState>[
expect: () => const <PostState>[
PostState(
status: PostStatus.success,
posts: [...mockPosts, ...extraMockPosts],
Expand Down

0 comments on commit e8be063

Please sign in to comment.