We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fc5fd0 commit 4cb1ec7Copy full SHA for 4cb1ec7
pandas/tests/sparse/series/test_series.py
@@ -484,20 +484,12 @@ def test_get_get_value(self):
484
tm.assert_almost_equal(
485
self.bseries.get_value(10), self.bseries[10])
486
487
- @pytest.mark.single
488
def test_set_value(self):
489
-
490
idx = self.btseries.index[7]
491
- with tm.assert_produces_warning((FutureWarning,
492
- PerformanceWarning),
493
- check_stacklevel=False):
494
- self.btseries.set_value(idx, 0)
+ self.btseries.set_value(idx, 0)
495
assert self.btseries[idx] == 0
496
497
498
499
500
- self.iseries.set_value('foobar', 0)
+ self.iseries.set_value('foobar', 0)
501
assert self.iseries.index[-1] == 'foobar'
502
assert self.iseries['foobar'] == 0
503
0 commit comments