From 4deb695530bc6fb3b457f439fac383353138553c Mon Sep 17 00:00:00 2001 From: Geoffrey Sneddon Date: Wed, 25 Apr 2018 18:56:08 +0000 Subject: [PATCH] Bug 1453235 [wpt PR 10409] - Add backwards compatibility for external_host and host_ip, a=testonly Automatic update from web-platform-testsAdd backwards compatibility for external_host and host_ip (#10409) -- wpt-commits: e0d1004a4ac00f92209215722dca513ab5ed010c wpt-pr: 10409 --- testing/web-platform/tests/tools/wptserve/wptserve/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/web-platform/tests/tools/wptserve/wptserve/config.py b/testing/web-platform/tests/tools/wptserve/wptserve/config.py index b7607247dc61..c6e397a9ea81 100644 --- a/testing/web-platform/tests/tools/wptserve/wptserve/config.py +++ b/testing/web-platform/tests/tools/wptserve/wptserve/config.py @@ -14,6 +14,8 @@ from .utils import get_port _renamed_props = { "host": "browser_host", "bind_hostname": "bind_address", + "external_host": "server_host", + "host_ip": "server_host", }