Skip to content

Commit

Permalink
tests: fix mock module paths
Browse files Browse the repository at this point in the history
  • Loading branch information
utnapischtim committed Feb 14, 2025
1 parent 9923aa9 commit 68d2800
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Copyright (C) 2019-2021 CERN.
# Copyright (C) 2019-2021 Northwestern University.
# Copyright (C) 2024 Graz University of Technology.
# Copyright (C) 2024-2025 Graz University of Technology.
#
# Invenio App RDM is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand Down Expand Up @@ -77,7 +77,9 @@ def subjects_service(app):
def extra_entry_points():
"""Register extra entry point."""
return {
"invenio_base.blueprints": ["mock_module = mock_module.views:create_blueprint"],
"invenio_base.blueprints": [
"mock_module = tests.mock_module.views:create_blueprint"
],
}


Expand Down

0 comments on commit 68d2800

Please sign in to comment.