Skip to content

Commit

Permalink
test: fix failing tests due to missing route
Browse files Browse the repository at this point in the history
declaration in conftest. The missing route was added in
d4557fb
  • Loading branch information
matthiasschaub committed Oct 3, 2024
1 parent e3892f9 commit 4e2fdf6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,11 @@ def flask_app():
app.add_url_rule("/", view_func=routes.index, methods=["GET"])
app.add_url_rule("/about", view_func=routes.about, methods=["GET"])
app.add_url_rule("/help", view_func=routes.help, methods=["GET"])
app.add_url_rule(
"/case-studies/cultural-landmarks",
view_func=routes.case_study_cultural_landmarks,
methods=["GET"],
)

Babel(app, locale_selector=get_locale) # for translations

Expand Down

0 comments on commit 4e2fdf6

Please sign in to comment.