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

Unified Diff: tests/standalone/io/web_socket_secure_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/web_socket_no_secure_test.dart ('k') | tests/standalone/io/web_socket_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/web_socket_secure_test.dart
diff --git a/tests/standalone/io/web_socket_secure_test.dart b/tests/standalone/io/web_socket_secure_test.dart
index 707e469480bbb556e082cc08e3769e9237ed4bc5..cb78bd39dd4769ff7682614a869e5c4254f7b1ef 100644
--- a/tests/standalone/io/web_socket_secure_test.dart
+++ b/tests/standalone/io/web_socket_secure_test.dart
@@ -38,7 +38,7 @@ void test() {
// Connect web socket over HTTPS.
var conn = new WebSocketClientConnection(
client.getUrl(
- new Uri.fromString("https://$HOST_NAME:${server.port}/")));
+ Uri.parse("https://$HOST_NAME:${server.port}/")));
conn.onOpen = () {
conn.send("hello");
};
« no previous file with comments | « tests/standalone/io/web_socket_no_secure_test.dart ('k') | tests/standalone/io/web_socket_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698