File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22// for details. All rights reserved. Use of this source code is governed by a
33// BSD-style license that can be found in the LICENSE file.
44
5- import 'package:universal_io/io.dart ' ;
5+ import 'dart:io ' ;
66
77import 'base_client.dart' ;
88import 'base_request.dart' ;
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ dependencies:
1111 http_parser : ^4.0.0
1212 meta : ^1.3.0
1313 path : ^1.8.0
14- universal_io : ^2.0.4
1514
1615dev_dependencies :
1716 fake_async : ^1.2.0
Original file line number Diff line number Diff line change @@ -113,7 +113,7 @@ void main() {
113113 });
114114
115115 expect (response.cookies.length, 1 );
116- expect (response.cookies[ 0 ] .name, 'AWSALB' );
117- expect (response.cookies[ 0 ] .value, 'AWSALB_TEST' );
116+ expect (response.cookies.first .name, 'AWSALB' );
117+ expect (response.cookies.first .value, 'AWSALB_TEST' );
118118 });
119119}
You can’t perform that action at this time.
0 commit comments