Skip to content

Commit

Permalink
test(datatypes): update test to test double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
deepyaman authored and cpcloud committed Jan 11, 2024
1 parent 9963705 commit c383331
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/expr/datatypes/tests/test_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def test_parse_timestamp_with_timezone_single_quote():


def test_parse_timestamp_with_timezone_double_quote():
t = dt.dtype("timestamp('US/Eastern')")
t = dt.dtype('timestamp("US/Eastern")')
assert isinstance(t, dt.Timestamp)
assert t.timezone == "US/Eastern"

Expand Down

0 comments on commit c383331

Please sign in to comment.