Add SALT API client
diff --git a/tcp_tests/fixtures/common_services_fixtures.py b/tcp_tests/fixtures/common_services_fixtures.py
index 21c0e5d..f629dd2 100644
--- a/tcp_tests/fixtures/common_services_fixtures.py
+++ b/tcp_tests/fixtures/common_services_fixtures.py
@@ -26,14 +26,15 @@
@pytest.fixture(scope='function')
-def common_services_actions(config, underlay):
+def common_services_actions(config, underlay, salt_actions):
"""Fixture that provides various actions for CommonServices
:param config: fixture provides oslo.config
:param underlay: fixture provides underlay manager
:rtype: CommonServicesManager
"""
- return common_services_manager.CommonServicesManager(config, underlay)
+ return common_services_manager.CommonServicesManager(config, underlay,
+ salt_actions)
@pytest.mark.revert_snapshot(ext.SNAPSHOT.common_services_deployed)