Skip to content

Commit 53e0ae9

Browse files
author
Bruno P. Kinoshita
committed
Use int64 instead of Int64 for dtype
1 parent 7c26366 commit 53e0ae9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/formats/test_to_csv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ def test_to_csv_zip_arguments(self, compression, archive_name):
556556
archived_file = os.path.basename(zp.filelist[0].filename)
557557
assert archived_file == expected_arcname
558558

559-
@pytest.mark.parametrize("df_new_type", ["Int64"])
559+
@pytest.mark.parametrize("df_new_type", ["int64"])
560560
def test_to_csv_na_rep_long_string(self, df_new_type):
561561
# see gh-25099
562562
df = pd.DataFrame([np.nan] * 3, columns=['c'], dtype=df_new_type)

0 commit comments

Comments
 (0)