Skip to content

Commit 4e2fdf6

Browse files
test: fix failing tests due to missing route
declaration in conftest. The missing route was added in d4557fb
1 parent e3892f9 commit 4e2fdf6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/integration/conftest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,11 @@ def flask_app():
149149
app.add_url_rule("/", view_func=routes.index, methods=["GET"])
150150
app.add_url_rule("/about", view_func=routes.about, methods=["GET"])
151151
app.add_url_rule("/help", view_func=routes.help, methods=["GET"])
152+
app.add_url_rule(
153+
"/case-studies/cultural-landmarks",
154+
view_func=routes.case_study_cultural_landmarks,
155+
methods=["GET"],
156+
)
152157

153158
Babel(app, locale_selector=get_locale) # for translations
154159

0 commit comments

Comments
 (0)