Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
fix typo in test_graph_basics that somehow we didn't care about before
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcjohnson committed Apr 9, 2020
1 parent 6d398a2 commit aa4fce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/graph/test_graph_basics.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit aa4fce7

Please # to comment.