Skip to content

Commit 8c596ea

Browse files
authored
Quote style for Ruff
1 parent 3774ceb commit 8c596ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/frame/methods/test_replace.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1522,6 +1522,6 @@ def test_replace_object_splitting(self, using_infer_string):
15221522
def test_replace_bool_to_numpy_attributeerror(self):
15231523
# GH#47101
15241524
pass_pre_patch = DataFrame({"d":[None]})
1525-
tm.assert_frame_equal(pass_pre_patch, pass_pre_patch.replace('', pd.NA))
1525+
tm.assert_frame_equal(pass_pre_patch, pass_pre_patch.replace("", pd.NA))
15261526
fail_pre_patch = DataFrame({"d":[pd.NA]})
1527-
tm.assert_frame_equal(fail_pre_patch, fail_pre_patch.replace('', pd.NA))
1527+
tm.assert_frame_equal(fail_pre_patch, fail_pre_patch.replace("", pd.NA))

0 commit comments

Comments
 (0)