Skip to content

Commit

Permalink
remove fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
teovin committed May 22, 2024
1 parent 19904af commit 9261950
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
4 changes: 2 additions & 2 deletions web/config/settings/settings_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,5 +305,5 @@ class LoggerConfig(TypedDict, total=False):
try:
with open(f"{STATIC_ROOT}/data/ali_materials.json", "r") as file:
ALI_MATERIALS = json.load(file)
except FileNotFoundError as e:
print("Error opening file.", e)
except FileNotFoundError as fileNotFoundError:
print("Error opening file.", fileNotFoundError)
5 changes: 0 additions & 5 deletions web/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -684,11 +684,6 @@ def legal_doc(legal_document_factory):
return legal_document_factory()


@pytest.fixture
def content_node(content_node_factory):
return content_node_factory()


@pytest.fixture
def capapi_mock(requests_mock):
"""
Expand Down

0 comments on commit 9261950

Please sign in to comment.