@@ -195,7 +195,7 @@ def test_put_compression_blosc(setup_path):
195
195
196
196
197
197
def test_put_datetime_ser (setup_path , performance_warning , using_infer_string ):
198
- # https://github.com/pandas-dev/pandas/pull/???
198
+ # https://github.com/pandas-dev/pandas/pull/60663
199
199
ser = Series (3 * [Timestamp ("20010102" ).as_unit ("ns" )])
200
200
with ensure_clean_store (setup_path ) as store :
201
201
store .put ("ser" , ser )
@@ -236,6 +236,7 @@ def test_put_mixed_type(setup_path, performance_warning, using_infer_string):
236
236
237
237
238
238
def test_put_str_frame (setup_path , performance_warning , string_dtype_arguments ):
239
+ # https://github.com/pandas-dev/pandas/pull/60663
239
240
dtype = pd .StringDtype (* string_dtype_arguments )
240
241
df = DataFrame ({"a" : pd .array (["x" , pd .NA , "y" ], dtype = dtype )})
241
242
with ensure_clean_store (setup_path ) as store :
@@ -248,6 +249,7 @@ def test_put_str_frame(setup_path, performance_warning, string_dtype_arguments):
248
249
249
250
250
251
def test_put_str_series (setup_path , performance_warning , string_dtype_arguments ):
252
+ # https://github.com/pandas-dev/pandas/pull/60663
251
253
dtype = pd .StringDtype (* string_dtype_arguments )
252
254
ser = Series (["x" , pd .NA , "y" ], dtype = dtype )
253
255
with ensure_clean_store (setup_path ) as store :
0 commit comments