From 43cafcbb40c6732523ef2d556f02913953564fe1 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Thu, 23 Jun 2016 18:49:19 -0400 Subject: [PATCH] Avoid Python's HTTP server automatic redirect that appends / after the query string. Fixes #11843. --- tests/dromaeo/run_dromaeo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dromaeo/run_dromaeo.py b/tests/dromaeo/run_dromaeo.py index 1ff5e18edf2..8f7127f8c7c 100755 --- a/tests/dromaeo/run_dromaeo.py +++ b/tests/dromaeo/run_dromaeo.py @@ -19,7 +19,7 @@ TEST_SERVER_PORT = 8192 # Run servo and print / parse the results for a specific Dromaeo module. def run_servo(servo_exe, tests): - url = "http://localhost:{0}/dromaeo/web/?{1}&automated&post_json".format(TEST_SERVER_PORT, tests) + url = "http://localhost:{0}/dromaeo/web/index.html?{1}&automated&post_json".format(TEST_SERVER_PORT, tests) args = [servo_exe, url, "-z", "-f"] return subprocess.Popen(args)