Skip to content

Commit 0941d15

Browse files
double quotes
1 parent de0579b commit 0941d15

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/tests/indexing/test_loc.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2870,10 +2870,10 @@ def test_loc_setitem_using_datetimelike_str_as_index(fill_val, exp_dtype):
28702870

28712871

28722872
def test_loc_set_int_dtype():
2873-
df = pd.DataFrame([list('abc')])
2874-
df.loc[:, 'col1'] = int(5)
2873+
df = pd.DataFrame([list("abc")])
2874+
df.loc[:, "col1"] = int(5)
28752875

2876-
assert str(df.dtypes['col1']) == 'int64'
2876+
assert str(df.dtypes["col1"]) == "int64"
28772877

28782878

28792879
class TestLocSeries:

0 commit comments

Comments
 (0)