Skip to content

Commit

Permalink
fix other test
Browse files Browse the repository at this point in the history
  • Loading branch information
orlp committed Sep 26, 2024
1 parent 9cff9b9 commit 0ed765c
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1367,7 +1367,7 @@ def test_dt_mean_deprecated() -> None:
@pytest.mark.parametrize(
"value",
[
date(1677, 9, 22),
# date(1677, 9, 22), # See test_literal_from_datetime.
date(1970, 1, 1),
date(2024, 2, 29),
date(2262, 4, 11),
Expand Down Expand Up @@ -1430,8 +1430,6 @@ def test_literal_from_datetime(
value = value.replace(tzinfo=ZoneInfo(dtype.time_zone)) # type: ignore[union-attr]

assert out.schema == OrderedDict({"literal": dtype})
print(out.item())
print(value)
assert out.item() == value


Expand Down

0 comments on commit 0ed765c

Please sign in to comment.