Add importing modules instead of classes

This patch removes import of classes and replaces them with import of modules.

Change-Id: Id2502cf96ac7227cf1036cd54a74f3d7acd83479
Closes-Bug: #1594434
This commit is contained in:
Alexandr Stavitskiy
2016-06-21 19:37:01 +03:00
parent e3edc67045
commit cb693e4093
24 changed files with 131 additions and 126 deletions

View File

@@ -19,7 +19,7 @@
import mock
import oslo_messaging as om
from watcher.applier.rpcapi import ApplierAPI
from watcher.applier import rpcapi
from watcher.common import exception
from watcher.common import utils
@@ -30,7 +30,7 @@ class TestApplierAPI(base.TestCase):
def setUp(self):
super(TestApplierAPI, self).setUp()
api = ApplierAPI()
api = rpcapi.ApplierAPI()
def test_get_version(self):
expected_version = self.api.API_VERSION
@@ -43,7 +43,7 @@ class TestApplierAPI(base.TestCase):
mock_call.assert_called_once_with(
expected_context.to_dict(),
'check_api_version',
api_version=ApplierAPI().API_VERSION)
api_version=rpcapi.ApplierAPI().API_VERSION)
def test_execute_audit_without_error(self):
with mock.patch.object(om.RPCClient, 'call') as mock_call: