From 14b2c06bd3935c9781616ab2352b9960c8c32e6d Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 2 Feb 2024 11:30:00 +0900 Subject: [PATCH] Get rid of 3rd party mock ... by replacing it by the built-in unittest.mock . Change-Id: I17a8c31b957514ed6610a24745829c367a42f3ae --- mistral_tempest_tests/tests/base.py | 2 +- requirements.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/mistral_tempest_tests/tests/base.py b/mistral_tempest_tests/tests/base.py index 923648c..f0391fa 100644 --- a/mistral_tempest_tests/tests/base.py +++ b/mistral_tempest_tests/tests/base.py @@ -13,8 +13,8 @@ # under the License. import os +from unittest import mock -import mock from tempest import config from tempest import test as test diff --git a/requirements.txt b/requirements.txt index c443092..3c3206f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,7 +9,6 @@ oslo.utils>=3.33.0 # Apache-2.0 oslo.log>=3.36.0 # Apache-2.0 oslo.serialization!=2.19.1,>=2.18.0 # Apache-2.0 paramiko>=2.0.0 # LGPLv2.1+ -mock>=2.0.0 # BSD tempest>=17.1.0 # Apache-2.0 testtools>=2.2.0 # MIT python-keystoneclient>=3.8.0 # Apache-2.0