AVRO-1951: Python: Fix ipc_test.py with a valid DNS name.
Project: http://git-wip-us.apache.org/repos/asf/avro/repo Commit: http://git-wip-us.apache.org/repos/asf/avro/commit/edf6a7e6 Tree: http://git-wip-us.apache.org/repos/asf/avro/tree/edf6a7e6 Diff: http://git-wip-us.apache.org/repos/asf/avro/diff/edf6a7e6 Branch: refs/heads/branch-1.8 Commit: edf6a7e6c38f1a5e941fbc79fd8c7d37d04344cf Parents: 695efaf Author: Ryan Blue <[email protected]> Authored: Sat Nov 5 15:01:52 2016 -0700 Committer: Ryan Blue <[email protected]> Committed: Sat Nov 5 15:04:25 2016 -0700 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ lang/py/test/test_ipc.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/avro/blob/edf6a7e6/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 8953f9b..18622c1 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -102,6 +102,8 @@ Avro 1.8.2 (5 November 2016) AVRO-1626: C#: Fix Avro.pref build error. (Naruto Takahashi via blue) + AVRO-1951: Python: Fix ipc_test.py with a valid DNS name. (blue) + Avro 1.8.1 (14 May 2016) INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/avro/blob/edf6a7e6/lang/py/test/test_ipc.py ---------------------------------------------------------------------- diff --git a/lang/py/test/test_ipc.py b/lang/py/test/test_ipc.py index 7fffe49..8d29c44 100644 --- a/lang/py/test/test_ipc.py +++ b/lang/py/test/test_ipc.py @@ -30,10 +30,10 @@ class TestIPC(unittest.TestCase): pass def test_server_with_path(self): - client_with_custom_path = ipc.HTTPTransceiver('dummyserver.net', 80, '/service/article') + client_with_custom_path = ipc.HTTPTransceiver('apache.org', 80, '/service/article') self.assertEqual('/service/article', client_with_custom_path.req_resource) - client_with_default_path = ipc.HTTPTransceiver('dummyserver.net', 80) + client_with_default_path = ipc.HTTPTransceiver('apache.org', 80) self.assertEqual('/', client_with_default_path.req_resource) if __name__ == '__main__':
