@@ -2189,17 +2189,6 @@ def test_calendar_roundtrip_issue(self, setup_path):
2189
2189
result = store .select ("table" )
2190
2190
tm .assert_series_equal (result , s )
2191
2191
2192
- def test_roundtrip_tz_aware_index (self , setup_path ):
2193
- # GH 17618
2194
- time = pd .Timestamp ("2000-01-01 01:00:00" , tz = "US/Eastern" )
2195
- df = pd .DataFrame (data = [0 ], index = [time ])
2196
-
2197
- with ensure_clean_store (setup_path ) as store :
2198
- store .put ("frame" , df , format = "fixed" )
2199
- recons = store ["frame" ]
2200
- tm .assert_frame_equal (recons , df )
2201
- assert recons .index [0 ].value == 946706400000000000
2202
-
2203
2192
def test_append_with_timedelta (self , setup_path ):
2204
2193
# GH 3577
2205
2194
# append timedelta
@@ -2554,18 +2543,6 @@ def test_store_index_name(self, setup_path):
2554
2543
recons = store ["frame" ]
2555
2544
tm .assert_frame_equal (recons , df )
2556
2545
2557
- def test_store_index_name_with_tz (self , setup_path ):
2558
- # GH 13884
2559
- df = pd .DataFrame ({"A" : [1 , 2 ]})
2560
- df .index = pd .DatetimeIndex ([1234567890123456787 , 1234567890123456788 ])
2561
- df .index = df .index .tz_localize ("UTC" )
2562
- df .index .name = "foo"
2563
-
2564
- with ensure_clean_store (setup_path ) as store :
2565
- store .put ("frame" , df , format = "table" )
2566
- recons = store ["frame" ]
2567
- tm .assert_frame_equal (recons , df )
2568
-
2569
2546
@pytest .mark .parametrize ("table_format" , ["table" , "fixed" ])
2570
2547
def test_store_index_name_numpy_str (self , table_format , setup_path ):
2571
2548
# GH #13492
0 commit comments