Skip to content

Commit ad4133d

Browse files
committed
chore: downgrade collection version and apply dart format
1 parent a553089 commit ad4133d

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

dio/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies:
2626
path: ^1.8.0
2727

2828
dio_web_adapter: '>=1.0.0 <3.0.0'
29-
collection: ^1.19.1
29+
collection: ">=1.16.0 <2.0.0"
3030

3131
dev_dependencies:
3232
lints: any

dio/test/parameter_test.dart

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ void main() {
88

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

11-
expect(cache.containsKey(param2), true, reason: 'param1 and param2 should be considered equal');
11+
expect(
12+
cache.containsKey(param2),
13+
true,
14+
reason: 'param1 and param2 should be considered equal',
15+
);
1216
});
1317
}

0 commit comments

Comments
 (0)