Skip to content

Commit e281fec

Browse files
committed
oops fix tooltip test
1 parent 67b124b commit e281fec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/dash-core-components/tests/integration/tooltip/test_tooltip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def update_tooltip_content(hoverData):
7777
dash_dcc.wait_for_contains_text("#graph-tooltip", "x0=")
7878
tt_text = dash_dcc.find_element("#graph-tooltip").text
7979
coords = [float(part.split("=")[1]) for part in tt_text.split(",")]
80-
assert 175 < coords[0] < 180, "x0 is about 200 minus half a marker size"
80+
assert 175 < coords[0] < 185, "x0 is about 200 minus half a marker size"
8181
assert 175 < coords[1] < 185, "y0 is about 200 minus half a marker size"
8282

8383
ActionChains(dash_dcc.driver).move_to_element_with_offset(elem, 0, 0).perform()

0 commit comments

Comments
 (0)