Skip to content

Commit c58e73a

Browse files
committed
fix: PyArrow datetime issue in test
thanks @emilylk closes #5014
1 parent 410d30e commit c58e73a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

plotly/tests/test_optional/test_px/test_px_hover.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,6 @@ def test_sunburst_hoverdict_color(backend):
185185

186186

187187
def test_date_in_hover(request, constructor):
188-
# FIXME: PyArrow requires a different format for datetime constructors with timezones
189-
from .conftest import pyarrow_table_constructor
190-
if constructor is pyarrow_table_constructor:
191-
request.applymarker(pytest.mark.xfail)
192-
193188
df = nw.from_native(
194189
constructor({"date": ["2015-04-04 19:31:30+0100"], "value": [3]})
195190
).with_columns(date=nw.col("date").str.to_datetime(format="%Y-%m-%d %H:%M:%S%z"))

0 commit comments

Comments
 (0)