From 3c9be01550d1a36c14de9f5dcb1b632066a8184c Mon Sep 17 00:00:00 2001 From: suojae Date: Mon, 27 Jan 2025 12:32:13 +0900 Subject: [PATCH] chore: downgrade collection version and apply dart format --- dio/pubspec.yaml | 2 +- dio/test/parameter_test.dart | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dio/pubspec.yaml b/dio/pubspec.yaml index ab5908ec3..6cd56e4d4 100644 --- a/dio/pubspec.yaml +++ b/dio/pubspec.yaml @@ -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 diff --git a/dio/test/parameter_test.dart b/dio/test/parameter_test.dart index 9ba1cd6b9..56a73743a 100644 --- a/dio/test/parameter_test.dart +++ b/dio/test/parameter_test.dart @@ -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', + ); }); }