test_postgres: fix typos

pull/57184/head
Andrey Klychkov 5 years ago committed by Toshio Kuratomi
parent 01ed7a489a
commit bf25889bfd

@ -102,8 +102,8 @@ class TestEnsureReqLibs():
1. value of err_msg attribute of m_ansible_module mock object.
"""
@pytest.fixture
def m_ansible_module(self, scope='class'):
@pytest.fixture(scope='class')
def m_ansible_module(self):
"""Return an object of dummy AnsibleModule class."""
class Dummym_ansible_module():
def __init__(self):
@ -168,8 +168,8 @@ class TestConnectToDb():
2. Types of return objects (db_connection and cursor).
"""
@pytest.fixture
def m_ansible_module(self, scope='class'):
@pytest.fixture(scope='class')
def m_ansible_module(self):
"""Return an object of dummy AnsibleModule class."""
class DummyAnsibleModule():
def __init__(self):

Loading…
Cancel
Save