Skip to content

Commit

Permalink
fix: dt naivety
Browse files Browse the repository at this point in the history
  • Loading branch information
constantinius committed Feb 16, 2023
1 parent 74e3133 commit 08fb5f5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/native/test_evaluate.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import math
from dataclasses import dataclass
from datetime import date, datetime
from datetime import date, datetime, timezone
from typing import List, Optional

import pytest
Expand Down Expand Up @@ -38,7 +38,7 @@ def data():
5,
5.5,
date(2010, 1, 1),
datetime(2010, 1, 1),
datetime(2010, 1, 1, tzinfo=timezone.utc),
Point(1, 1),
[2, 3],
Nested("this is a test"),
Expand All @@ -49,7 +49,7 @@ def data():
8,
8.5,
date(2010, 1, 10),
datetime(2010, 1, 10),
datetime(2010, 1, 10, tzinfo=timezone.utc),
Point(2, 2),
[1, 2, 3, 4, 5],
Nested("this is another test"),
Expand Down

0 comments on commit 08fb5f5

Please sign in to comment.