@@ -195,7 +195,7 @@ def test_put_compression_blosc(setup_path):
195195
196196
197197def 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
199199 ser = Series (3 * [Timestamp ("20010102" ).as_unit ("ns" )])
200200 with ensure_clean_store (setup_path ) as store :
201201 store .put ("ser" , ser )
@@ -236,6 +236,7 @@ def test_put_mixed_type(setup_path, performance_warning, using_infer_string):
236236
237237
238238def test_put_str_frame (setup_path , performance_warning , string_dtype_arguments ):
239+ # https://github.com/pandas-dev/pandas/pull/60663
239240 dtype = pd .StringDtype (* string_dtype_arguments )
240241 df = DataFrame ({"a" : pd .array (["x" , pd .NA , "y" ], dtype = dtype )})
241242 with ensure_clean_store (setup_path ) as store :
@@ -248,6 +249,7 @@ def test_put_str_frame(setup_path, performance_warning, string_dtype_arguments):
248249
249250
250251def test_put_str_series (setup_path , performance_warning , string_dtype_arguments ):
252+ # https://github.com/pandas-dev/pandas/pull/60663
251253 dtype = pd .StringDtype (* string_dtype_arguments )
252254 ser = Series (["x" , pd .NA , "y" ], dtype = dtype )
253255 with ensure_clean_store (setup_path ) as store :
0 commit comments