fix inheritance

Change-Id: I8227c1ab80780d96fae380bcee8ea24004c1bb17
This commit is contained in:
Eyal 2016-03-13 17:35:57 +02:00
parent ba8add220b
commit b68af26c56

View File

@ -18,15 +18,15 @@ from vitrage_tempest_tests.tests.base_mock import BaseMock
LOG = logging.getLogger(__name__)
class BaseVitrageTest(BaseTest):
class BaseVitrageTest(BaseTest, BaseMock):
"""Base test class for Vitrage API tests."""
def __init__(self, *args, **kwds):
super(BaseVitrageTest, self).__init__(*args, **kwds)
def __init__(self, *args, **kwargs):
super(BaseVitrageTest, self).__init__(*args, **kwargs)
def _create_graph_by_mock(self):
"""Create MOCK Graph and copied to the string """
processor = BaseMock.create_processor_with_graph()
processor = self.create_processor_with_graph()
entity_graph = processor.entity_graph
mock_graph_output = entity_graph.output_graph()
LOG.info("The mock graph is : " + mock_graph_output)