Skip to content

Commit 1088331

Browse files
committed
fixing issue with failing test due to endpoint name
1 parent 0fa5c99 commit 1088331

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dash/server_factories/flask_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def index(*args, **kwargs):
7777
set_request_adapter(adapter)
7878
return dash_app.render_index(dash_app, *args, **kwargs)
7979

80-
self.add_url_rule(app, "/", index, endpoint="index", methods=["GET"])
80+
self.add_url_rule(app, "/", index, endpoint="/", methods=["GET"])
8181

8282
def serve_component_suites(
8383
self, dash_app, package_name, fingerprinted_path, request=None

0 commit comments

Comments
 (0)