From 66f6684fcbc5dfbea79807322136dbcc04e085d5 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Wed, 19 Jan 2022 11:17:19 +0100 Subject: [PATCH] Change TCP port number used in the unit tests There was port 88888 used, which is definitely too much for the TCP ports. Now it is correct port 8888 TrivialFix Change-Id: Ic40e3356f05ac506b8500a2babf40a1be4f6ec1b --- tobiko/tests/unit/_case.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tobiko/tests/unit/_case.py b/tobiko/tests/unit/_case.py index a9f92de07..110bdd419 100644 --- a/tobiko/tests/unit/_case.py +++ b/tobiko/tests/unit/_case.py @@ -64,8 +64,8 @@ class FixtureManagerPatch(tobiko.FixtureManager, _patch.PatchFixture): class TobikoUnitTest(_patch.PatchMixin, testtools.TestCase): patch_environ = { - 'http_proxy': 'http://127.0.0.1:88888', - 'https_proxy': 'http://127.0.0.1:88888', + 'http_proxy': 'http://127.0.0.1:8888', + 'https_proxy': 'http://127.0.0.1:8888', 'no_proxy': '127.0.0.1' }