Skip to content

Commit a3e490c

Browse files
GH1255 Initial commit
1 parent b4ed638 commit a3e490c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_series.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -866,8 +866,9 @@ def test_types_scalar_arithmetic() -> None:
866866
res_pow2: pd.Series = s**0.213
867867
res_pow3: pd.Series = s.pow(0.5)
868868

869+
869870
def test_types_complex_arithmetic() -> None:
870-
""" Test adding complex number to pd.Series[float] GH 103."""
871+
"""Test adding complex number to pd.Series[float] GH 103."""
871872
c = 1 + 1j
872873
s = pd.Series([1.0, 2.0, 3.0])
873874
x = s + c

0 commit comments

Comments
 (0)