Use unittest.mock instead of third party mock

Now that we no longer support py27, we can use the standard library
unittest.mock module instead of the third party mock lib.

Change-Id: Id1f5f15e7d6c7edc5003f8f1947b7fb8ff783bbe
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2020-04-03 17:05:02 -05:00
parent 7bd04cf8bd
commit 98f7e150ad
No known key found for this signature in database
GPG Key ID: CE7EE4BFAF8D70C8
2 changed files with 1 additions and 2 deletions

View File

@ -15,5 +15,4 @@ testscenarios>=0.4 # Apache-2.0/BSD
testtools>=1.4.0 # MIT testtools>=1.4.0 # MIT
stestr>=2.0.0 # Apache-2.0 stestr>=2.0.0 # Apache-2.0
fixtures>=3.0.0 # Apache-2.0/BSD fixtures>=3.0.0 # Apache-2.0/BSD
mock>=2.0 # BSD

View File

@ -14,9 +14,9 @@
import subprocess import subprocess
import sys import sys
from unittest import mock
import ddt import ddt
import mock
import testtools import testtools
from tripleo_repos import main from tripleo_repos import main