Skip to content

Commit

Permalink
🚨 fix linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed Sep 1, 2023
1 parent 21d5ecb commit c4ef2a6
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions chopper/test/converter_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,16 @@ void main() {
expect(JsonConverter.isJson(null), isFalse);
expect(JsonConverter.isJson(42), isFalse);
expect(JsonConverter.isJson([]), isFalse);
expect(JsonConverter.isJson([1,2,3]), isFalse);
expect(JsonConverter.isJson([1, 2, 3]), isFalse);
expect(JsonConverter.isJson(['a', 'b', 'c']), isFalse);
expect(JsonConverter.isJson({}), isFalse);
expect(JsonConverter.isJson({
'foo': 'bar',
'list': [1, 2, 3],
}), isFalse);
expect(
JsonConverter.isJson({
'foo': 'bar',
'list': [1, 2, 3],
}),
isFalse,
);
});
});

Expand Down

0 comments on commit c4ef2a6

Please sign in to comment.