Drop workaround for old oslotest version with six

We already removed usage of six globally so no longer need this
workaround.

Change-Id: I921dba57b291c9e551c8481032a56bae4453875e
This commit is contained in:
Takashi Kajinami 2025-03-07 21:56:19 +09:00
parent e91bb459c0
commit 9d6f373bec

View File

@ -15,9 +15,3 @@
import eventlet
eventlet.monkey_patch()
# oslotest prepares mock for six in oslotest/__init__.py as follow:
# six.add_move(six.MovedModule('mock', 'mock', 'unittest.mock')) and
# oslo.messaging imports oslotest before importing test submodules to
# setup six.moves for mock, then "from unittest import mock" works well.
import oslotest