Merge "Change TCP port number used in the unit tests"

This commit is contained in:
Zuul 2022-01-20 10:15:46 +00:00 committed by Gerrit Code Review
commit 000bb80ee3
1 changed files with 2 additions and 2 deletions

View File

@ -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'
}