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

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

Issue 131173002: Fix http_requested_uri_test for Win/Mac. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/http_requested_uri_test.dart
diff --git a/tests/standalone/io/http_requested_uri_test.dart b/tests/standalone/io/http_requested_uri_test.dart
index e93f0eec36d66b4df6dcaed0f3f09219f203aab2..f573c03fee3a06379fa3da79788cd5aa80aeb28f 100644
--- a/tests/standalone/io/http_requested_uri_test.dart
+++ b/tests/standalone/io/http_requested_uri_test.dart
@@ -11,7 +11,7 @@ const PATH = '/path?a=b#c';
void test(String expected, Map headers) {
asyncStart();
- HttpServer.bind("127.0.0.1", 0).then((server) {
+ HttpServer.bind("localhost", 0).then((server) {
Søren Gjesse 2014/01/09 08:53:57 Wheren't the use of localhost the source of sporad
Søren Gjesse 2014/01/09 09:00:56 Thinking about this again the issue was only there
expected = expected.replaceAll('%PORT', server.port.toString());
server.listen((request) {
Expect.equals("$expected$PATH",
@@ -44,6 +44,6 @@ void main() {
test('https://localhost:%PORT', {'x-forwarded-proto': 'https'});
test('ws://localhost:%PORT', {'x-forwarded-proto': 'ws'});
test('http://my-host:321', {'x-forwarded-host': 'my-host:321'});
- test('http://127.0.0.1:%PORT', {'host': null});
+ test('http://localhost:%PORT', {'host': null});
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698