Commit 3b5b46b0 authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Revert "Switch test platform to use IPv6 (#9775)" (#9779)

This reverts commit 9f5fa31e.
parent 9f5fa31e
......@@ -40,7 +40,7 @@ const String _kStartTimeoutTimerMessage = 'sky_shell test process has entered ma
/// The address at which our WebSocket server resides and at which the sky_shell
/// processes will host the Observatory server.
final InternetAddress _kHost = InternetAddress.LOOPBACK_IP_V6;
final InternetAddress _kHost = InternetAddress.LOOPBACK_IP_V4;
/// Configure the `test` package to work with Flutter.
///
......@@ -171,7 +171,7 @@ class _FlutterPlatform extends PlatformPlugin {
listenerFile.createSync();
listenerFile.writeAsStringSync(_generateTestMain(
testUrl: fs.path.toUri(fs.path.absolute(testPath)).toString(),
encodedWebsocketUrl: Uri.encodeComponent("ws://[${_kHost.address}]:${server.port}"),
encodedWebsocketUrl: Uri.encodeComponent("ws://${_kHost.address}:${server.port}"),
));
// Start the engine subprocess.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment