Skip to content

Commit 8ba72d1

Browse files
committed
fixup
1 parent 1041bc2 commit 8ba72d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/arrays/string_/test_string.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def test_constructor_raises():
205205

206206

207207
def test_from_sequnce_no_mutate():
208-
a = np.array(["a", pd.NA], dtype=object)
208+
a = np.array(["a", np.nan], dtype=object)
209209
original = a.copy()
210210
result = pd.arrays.StringArray._from_sequence(a)
211211
expected = pd.arrays.StringArray(np.array(["a", pd.NA], dtype=object))

0 commit comments

Comments
 (0)