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

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

Issue 12052038: Rename new Uri.fromString to Uri.parse. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload because of Error. 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
« no previous file with comments | « tests/standalone/io/regress_6521_test.dart ('k') | tests/standalone/io/secure_builtin_roots_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/regress_7097_test.dart
diff --git a/tests/standalone/io/regress_7097_test.dart b/tests/standalone/io/regress_7097_test.dart
index ee108223b01a239d0f0f17ad4e520bc42a2949c9..214f92b0aa347708c08437a3811f31b1b7509daf 100644
--- a/tests/standalone/io/regress_7097_test.dart
+++ b/tests/standalone/io/regress_7097_test.dart
@@ -39,7 +39,7 @@ void main() {
Future makeRequest(int n) {
var completer = new Completer();
- var url = new Uri.fromString("http://localhost:${server.port}");
+ var url = Uri.parse("http://localhost:${server.port}");
var connection = client.openUrl("POST", url);
connection.onRequest = (HttpClientRequest request) {
request.contentLength = n + 1;
« no previous file with comments | « tests/standalone/io/regress_6521_test.dart ('k') | tests/standalone/io/secure_builtin_roots_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698