Skip to content

Commit f1b4812

Browse files
committed
cast to time to int in test benchmarking
1 parent 8f820cd commit f1b4812

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/integration/renderer/test_benchmarking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def layout():
7373
html.H3("Dash 4 Firefox Performance MWE"),
7474
dcc.Input(id="input", value="initial value", type="text"),
7575
html.Div(id="output"),
76-
dcc.Store(id="store", data=time.time()),
76+
dcc.Store(id="store", data=int(time.time())),
7777
html.Div(children),
7878
]
7979
)

0 commit comments

Comments
 (0)