From aa4fce7b739de4c91fbae9e746c0b06883dd8569 Mon Sep 17 00:00:00 2001 From: alexcjohnson Date: Thu, 9 Apr 2020 11:43:34 -0400 Subject: [PATCH] fix typo in test_graph_basics that somehow we didn't care about before --- tests/integration/graph/test_graph_basics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/graph/test_graph_basics.py b/tests/integration/graph/test_graph_basics.py index 873c14854..aac21da7f 100644 --- a/tests/integration/graph/test_graph_basics.py +++ b/tests/integration/graph/test_graph_basics.py @@ -101,7 +101,7 @@ def test_grbs003_graph_wrapped_in_loading_component_does_not_fail(dash_dcc): dcc.Loading(id="page-content") ]) - @app.callback(Output('page-content', 'children'), [Input('url', 'value')]) + @app.callback(Output('page-content', 'children'), [Input('url', 'pathname')]) def render_page(url): return [ dcc.Dropdown(