Skip to content

Commit

Permalink
ci(all): fix analysis issues
Browse files Browse the repository at this point in the history
  • Loading branch information
FatulM committed Oct 4, 2021
1 parent 4207706 commit b4ae7c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -20,6 +20,7 @@ void main() {

final d = ResultSuccess(data: null);
expect(d.data, isNull);
// ignore: prefer_void_to_null
expect(d, hasType<ResultSuccess<Null>>());
});

Expand Down
Expand Up @@ -20,6 +20,7 @@ void main() {

final d = ResultSuccess(data: null);
expect(d.data, isNull);
// ignore: prefer_void_to_null
expect(d, hasType<ResultSuccess<Null>>());
});

Expand Down

0 comments on commit b4ae7c7

Please sign in to comment.