Skip to content

Commit

Permalink
chore: downgrade collection version and apply dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
suojae committed Jan 27, 2025
1 parent a553089 commit 3c9be01
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dio/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies:
path: ^1.8.0

dio_web_adapter: '>=1.0.0 <3.0.0'
collection: ^1.19.1
collection: ^1.16.0

dev_dependencies:
lints: any
Expand Down
6 changes: 5 additions & 1 deletion dio/test/parameter_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ void main() {

final cache = {param1: 'Cached Response'};

expect(cache.containsKey(param2), true, reason: 'param1 and param2 should be considered equal');
expect(
cache.containsKey(param2),
true,
reason: 'param1 and param2 should be considered equal',
);
});
}

0 comments on commit 3c9be01

Please sign in to comment.