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

Commit 8dca49b

Browse files
committed
trigger ci build
1 parent 5fff732 commit 8dca49b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: tests/test_integration.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ def snapshot(self, name):
5656
self.percy_runner.snapshot(name=name)
5757

5858
def test_click(self):
59+
call_count = Value('i', 0)
60+
5961
app = dash.Dash()
6062
app.layout = html.Div([
6163
html.Div(id='container'),
6264
html.Button('Click', id='button', n_clicks=0)
6365
])
6466

65-
call_count = Value('i', 0)
66-
6767
@app.callback(Output('container', 'children'), [Input('button', 'n_clicks')])
6868
def update_output(n_clicks):
6969
call_count.value += 1

0 commit comments

Comments
 (0)