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

Unified Diff: sdk/lib/_internal/pub/test/install/hosted/repair_cache_test.dart

Issue 24199004: Change pub tests and pub local server to use ipV4 localhost by address. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use pub serve 'hostname' option in tests of pub. Created 7 years, 3 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: sdk/lib/_internal/pub/test/install/hosted/repair_cache_test.dart
diff --git a/sdk/lib/_internal/pub/test/install/hosted/repair_cache_test.dart b/sdk/lib/_internal/pub/test/install/hosted/repair_cache_test.dart
index e456a98ab6f614735a0970249702dd533cc8a177..907a6a61ab2669d53a4a2bb30ca05dbc2f4a061b 100644
--- a/sdk/lib/_internal/pub/test/install/hosted/repair_cache_test.dart
+++ b/sdk/lib/_internal/pub/test/install/hosted/repair_cache_test.dart
@@ -15,7 +15,7 @@ main() {
// Set up a cache with a broken foo package.
d.dir(cachePath, [
d.dir('hosted', [
- d.async(port.then((p) => d.dir('localhost%58$p', [
+ d.async(port.then((p) => d.dir('127.0.0.1%58$p', [
d.dir("foo-1.2.3", [
d.libPubspec("foo", "1.2.3"),
// Note: empty "lib" directory.
@@ -39,7 +39,7 @@ main() {
// Set up a cache with a broken foo package.
d.dir(cachePath, [
d.dir('hosted', [
- d.async(port.then((p) => d.dir('localhost%58$p', [
+ d.async(port.then((p) => d.dir('127.0.0.1%58$p', [
d.dir("foo-1.2.3", [
d.libDir("foo")
// Note: no pubspec.

Powered by Google App Engine
This is Rietveld 408576698