diff --git a/tests/app/test_cloudfoundry_config.py b/tests/app/test_cloudfoundry_config.py index 6a8a128e4..d77887502 100644 --- a/tests/app/test_cloudfoundry_config.py +++ b/tests/app/test_cloudfoundry_config.py @@ -10,20 +10,13 @@ from app.cloudfoundry_config import ( @pytest.fixture -def postgres_config(): - return [ - { +def cloudfoundry_config(): + return { + 'postgres': [{ 'credentials': { 'uri': 'postgres uri' } - } - ] - - -@pytest.fixture -def cloudfoundry_config(postgres_config): - return { - 'postgres': postgres_config, + }], 'user-provided': [] }