From a84cde4ba617f761161a490d28fd5cc44568665a Mon Sep 17 00:00:00 2001 From: Eyal Date: Sun, 13 Mar 2016 10:04:55 +0200 Subject: [PATCH] fix method call no need for self in the call Change-Id: Id4b9f158c4e79ba07086bb7405f8e5e6a07b1df6 --- vitrage_tempest_tests/tests/api/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vitrage_tempest_tests/tests/api/base.py b/vitrage_tempest_tests/tests/api/base.py index b388bf3cd..8a1adaafd 100644 --- a/vitrage_tempest_tests/tests/api/base.py +++ b/vitrage_tempest_tests/tests/api/base.py @@ -26,7 +26,7 @@ class BaseVitrageTest(BaseTest): def _create_graph_by_mock(self): """Create MOCK Graph and copied to the string """ - processor = BaseMock.create_processor_with_graph(self) + processor = BaseMock.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)