Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyreff7 committed Sep 9, 2019
1 parent 91318be commit 134caf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/expr/tests/test_datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def test_time_valid():
('foo', dt.string),
(datetime.date.today(), dt.date),
(datetime.datetime.now(), dt.timestamp),
(datetime.timedelta(days=3), dt.interval),
(datetime.timedelta(days=3), dt.Interval(unit='D')),
# numeric types
(5, dt.int8),
(5, dt.int8),
Expand Down

0 comments on commit 134caf3

Please sign in to comment.