Skip to content

Commit fc2b198

Browse files
remove xfail that was not present on 2.3.x
1 parent c365dfc commit fc2b198

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

pandas/tests/io/test_parquet.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1187,16 +1187,7 @@ def test_infer_string_large_string_type(self, tmp_path, pa):
11871187

11881188

11891189
class TestParquetFastParquet(Base):
1190-
def test_basic(self, fp, df_full, request):
1191-
import fastparquet
1192-
1193-
if Version(fastparquet.__version__) < Version("2024.11.0"):
1194-
request.applymarker(
1195-
pytest.mark.xfail(
1196-
reason=("datetime_with_nat gets incorrect values"),
1197-
)
1198-
)
1199-
1190+
def test_basic(self, fp, df_full):
12001191
df = df_full
12011192

12021193
dti = pd.date_range("20130101", periods=3, tz="US/Eastern")

0 commit comments

Comments
 (0)