diff --git a/tests/test_multimodelcompare.py b/tests/test_multimodelcompare.py index eb80ccb6..62110b31 100644 --- a/tests/test_multimodelcompare.py +++ b/tests/test_multimodelcompare.py @@ -105,11 +105,6 @@ def test_mm_sel_missing_model(cc): def test_mm_skill_obs(cc): - with pytest.warns(FutureWarning): - sk = cc.skill(observation="c2") - assert len(sk) == 2 - assert pytest.approx(sk.loc["SW_2"].bias) == 0.081431053 - sk = cc.sel(observation="c2").skill() assert len(sk) == 2 assert pytest.approx(sk.loc["SW_2"].bias) == 0.081431053 @@ -288,15 +283,6 @@ def test_mm_mean_skill_weights_dict(cc): def test_mm_scatter(cc): - with pytest.warns(FutureWarning): - cc.sel(model="SW_2").scatter(start="2017-10-28") - - with pytest.warns(FutureWarning): - cc.sel(model="SW_2")[0].scatter(start="2017-10-28") - - with pytest.warns(FutureWarning): - cc.sel(model="SW_2").scatter() - # scatter is the default plot ax = cc.sel(model="SW_2").plot() assert "SW_2" in ax.get_title()