You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
295 B
14 lines
295 B
6 months ago
|
from pandas import Series
|
||
|
import pandas._testing as tm
|
||
|
|
||
|
|
||
|
def test_pop():
|
||
|
# GH#6600
|
||
|
ser = Series([0, 4, 0], index=["A", "B", "C"], name=4)
|
||
|
|
||
|
result = ser.pop("B")
|
||
|
assert result == 4
|
||
|
|
||
|
expected = Series([0, 0], index=["A", "C"], name=4)
|
||
|
tm.assert_series_equal(ser, expected)
|