Skip to content

Commit 4129ee9

Browse files
committed
added test for issue pandas-dev#32218
1 parent 575fd57 commit 4129ee9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/test_constructors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2642,7 +2642,7 @@ def test_construction_empty_array_multi_column_raises(self):
26422642
def test_construct_with_strings_and_none(self):
26432643
# GH#32218
26442644
df = DataFrame(["1", "2", None], columns=["a"], dtype="str")
2645-
expected = df = DataFrame({"a": ["1", "2", None]}, dtype="str")
2645+
expected = DataFrame({"a": ["1", "2", None]}, dtype="str")
26462646
tm.assert_frame_equal(df, expected)
26472647

26482648

0 commit comments

Comments
 (0)