used unittest.mock instead of mock

This commit is contained in:
harshitasao 2022-05-23 14:35:09 +05:30
parent 38ba743227
commit f1dfdbba45
3 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@
import os
import unittest
import mock
from unittest import mock
from .config_exception import ConfigException
from .exec_provider import ExecProvider

View File

@ -22,7 +22,7 @@ import tempfile
import unittest
from collections import namedtuple
import mock
from unittest import mock
import yaml
from six import PY3, next

View File

@ -14,7 +14,7 @@
import unittest
from mock import Mock, call
from unittest.mock import Mock, call
from kubernetes import client