Skip to content

Commit 7e1b45d

Browse files
committed
Fix test
1 parent 44639eb commit 7e1b45d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/dash-core-components/tests/integration/clipboard/test_clipboard.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ def test_clp003_clipboard_text(dash_dcc_headed):
6161
app = Dash(__name__, prevent_initial_callbacks=True)
6262
app.layout = html.Div(
6363
[
64-
dcc.Clipboard(id="copy_icon", content=copy_text),
64+
dcc.Clipboard(id="copy_icon", content=copy_text, n_clicks=0),
6565
dcc.Textarea(id="paste"),
66-
html.Button("Copy", id="copy_button"),
66+
html.Button("Copy", id="copy_button", n_clicks=0),
6767
]
6868
)
6969

0 commit comments

Comments
 (0)