We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67b124b commit e281fecCopy full SHA for e281fec
components/dash-core-components/tests/integration/tooltip/test_tooltip.py
@@ -77,7 +77,7 @@ def update_tooltip_content(hoverData):
77
dash_dcc.wait_for_contains_text("#graph-tooltip", "x0=")
78
tt_text = dash_dcc.find_element("#graph-tooltip").text
79
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"
+ assert 175 < coords[0] < 185, "x0 is about 200 minus half a marker size"
81
assert 175 < coords[1] < 185, "y0 is about 200 minus half a marker size"
82
83
ActionChains(dash_dcc.driver).move_to_element_with_offset(elem, 0, 0).perform()
0 commit comments