diff --git a/dbrepo-search-service/tests/conftest.py b/dbrepo-search-service/tests/conftest.py index 93af4d45873c99d9cf83438a2f35d2763044b283..824c1068fff7fdbe61640cf67b62f7d07092fd8a 100644 --- a/dbrepo-search-service/tests/conftest.py +++ b/dbrepo-search-service/tests/conftest.py @@ -41,7 +41,7 @@ def cleanup(request, session): :return: """ logging.info("[fixture] clean schema") - with open('./init/database.json', 'r') as f: + with open('./database.json', 'r') as f: if session.get_client().indices.exists(index="database"): session.get_client().indices.delete(index="database") session.get_client().indices.create(index="database", body=json.load(f))