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

Unified Diff: tests/standalone/io/url_encoding_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 months 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 side-by-side diff with in-line comments
Download patch
Index: tests/standalone/io/url_encoding_test.dart
diff --git a/tests/standalone/io/url_encoding_test.dart b/tests/standalone/io/url_encoding_test.dart
index 83765bbf7693aa36164202c3bc668577f6c3c00b..cee5022bf83efb49e7443cc1c5dfefd8e948b840 100644
--- a/tests/standalone/io/url_encoding_test.dart
+++ b/tests/standalone/io/url_encoding_test.dart
@@ -2,6 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+import "dart:async";
import "dart:utf";
part "../../../sdk/lib/io/input_stream.dart";
part "../../../sdk/lib/io/output_stream.dart";
@@ -35,7 +36,7 @@ void testParseQueryString() {
'sqrt2' : '\u221A2',
'name' : 'Franti\u0161ek'}[key]);
}
- Expect.setEquals(map.keys, ['&', '?', 'foo', 'sqrt2', 'name']);
+ Expect.setEquals(map.keys.toSet(), ['&', '?', 'foo', 'sqrt2', 'name']);
}
void main() {
« no previous file with comments | « tests/standalone/io/test_runner_exit_code_test.dart ('k') | tests/standalone/io/web_socket_protocol_processor_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698