Skip to content

Commit 6cc9ce5

Browse files
committed
Fixed tz name
1 parent e0b7b77 commit 6cc9ce5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/test_dtypes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def test_datetime_with_tz_dtypes(self):
9191
tzframe.iloc[1, 2] = pd.NaT
9292
result = tzframe.dtypes.sort_index()
9393
expected = Series([np.dtype('datetime64[ns]'),
94-
DatetimeTZDtype('ns', 'US/Eastern]'),
94+
DatetimeTZDtype('ns', 'US/Eastern'),
9595
DatetimeTZDtype('ns', 'CET')],
9696
['A', 'B', 'C'])
9797

0 commit comments

Comments
 (0)