Remove redundant postgres CloudFoundry fixture

This commit is contained in:
Ben Thorner
2022-04-12 14:40:09 +01:00
parent 385be77d67
commit 06aba23adb

View File

@@ -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': []
}