Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: tests/standalone/io/http_cookie_test.dart

Issue 48483002: Remove deprecated parts of dart:async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 import "dart:async"; 6 import "dart:async";
7 import "dart:io"; 7 import "dart:io";
8 8
9 void testCookies() { 9 void testCookies() {
10 var cookies = [{'abc': 'def'}, 10 var cookies = [{'abc': 'def'},
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 Expect.mapEquals(cookies[i], cookiesMap); 44 Expect.mapEquals(cookies[i], cookiesMap);
45 response.listen( 45 response.listen(
46 (d) {}, 46 (d) {},
47 onDone: () { 47 onDone: () {
48 if (++count == cookies.length) { 48 if (++count == cookies.length) {
49 client.close(); 49 client.close();
50 server.close(); 50 server.close();
51 } 51 }
52 }); 52 });
53 }) 53 })
54 .catchError((e) { 54 .catchError((e, trace) {
55 String msg = "Unexpected error $e"; 55 String msg = "Unexpected error $e";
56 var trace = getAttachedStackTrace(e);
57 if (trace != null) msg += "\nStackTrace: $trace"; 56 if (trace != null) msg += "\nStackTrace: $trace";
58 Expect.fail(msg); 57 Expect.fail(msg);
59 }); 58 });
60 } 59 }
61 }); 60 });
62 } 61 }
63 62
64 void main() { 63 void main() {
65 testCookies(); 64 testCookies();
66 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698