From eba3a94fc88bff644eb1a2a30ccc2869fd1054b7 Mon Sep 17 00:00:00 2001 From: Hovsep Mkrtchyan Date: Thu, 19 May 2016 17:35:18 -0700 Subject: [PATCH] fixed python test with . in base UR --- .../Python.Tests/AcceptanceTests/custom_base_uri_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutoRest/Generators/Python/Python.Tests/AcceptanceTests/custom_base_uri_tests.py b/AutoRest/Generators/Python/Python.Tests/AcceptanceTests/custom_base_uri_tests.py index d1a49930ec..91f3266675 100644 --- a/AutoRest/Generators/Python/Python.Tests/AcceptanceTests/custom_base_uri_tests.py +++ b/AutoRest/Generators/Python/Python.Tests/AcceptanceTests/custom_base_uri_tests.py @@ -73,7 +73,7 @@ def test_custom_base_uri_negative(self): client.paths.get_empty("local") def test_custom_base_uri_more_optiopns(self): - client = AutoRestParameterizedCustomHostTestClient("test12", "host.:3000") + client = AutoRestParameterizedCustomHostTestClient("test12", "host:3000") client.paths.get_empty("http://lo", "cal", "key1") if __name__ == '__main__':