Skip to content

Commit 8025248

Browse files
author
Matt Roeschke
committed
Fix sqlalchemy ref
1 parent 978a0d3 commit 8025248

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/test_sql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1373,7 +1373,7 @@ def test_datetime_with_timezone_roundtrip(self):
13731373
expected.to_sql('test_datetime_tz', self.conn, index=False)
13741374

13751375
if self.flavor == 'postgresql':
1376-
# SQLalchemy "timezones" (i.e. offsets) are coerced to UTC
1376+
# SQLAlchemy "timezones" (i.e. offsets) are coerced to UTC
13771377
expected['A'] = expected['A'].dt.tz_convert('UTC')
13781378
else:
13791379
# Otherwise, timestamps are returned as local, naive

0 commit comments

Comments
 (0)