Skip to content

Commit f8fff38

Browse files
committed
removed 1d version
1 parent 079547d commit f8fff38

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

pandas/tests/arithmetic/test_numeric.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -855,15 +855,7 @@ def test_modulo_zero_int(self):
855855
result = 0 % s
856856
expected = Series([np.nan, 0.0])
857857
tm.assert_series_equal(result, expected)
858-
859-
def test_np_array_mul_ea_array_returns_extensionarray(self):
860-
# GH#61866
861-
np_array = np.array([1, 2, 3, 4, 5], dtype=np.int64)
862-
ea_array = array([1, 2, 3, 4, 5], dtype="Int64")
863-
result = np_array * ea_array
864-
assert isinstance(result, type(ea_array))
865-
tm.assert_equal(result, array([1, 4, 9, 16, 25], dtype="Int64"))
866-
858+
867859
def test_non_1d_ea_raises_notimplementederror(self):
868860
# GH#61866
869861
ea_array = array([1, 2, 3, 4, 5], dtype="Int64").reshape(5, 1)

0 commit comments

Comments
 (0)