Skip to content

Commit d12265e

Browse files
committed
Remove plot_probe_group from tests
1 parent be9cccb commit d12265e

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

tests/test_plotting.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
from probeinterface import generate_dummy_probe, generate_dummy_probe_group
33
from probeinterface.plotting import plot_probe, plot_probegroup
44

5-
# remove once plot_probe_group is removed
6-
from probeinterface.plotting import plot_probe_group
7-
85
import matplotlib.pyplot as plt
96
import numpy as np
107

@@ -38,10 +35,6 @@ def test_plot_probegroup():
3835
plot_probegroup(probegroup, same_axes=True, with_contact_id=True)
3936
plot_probegroup(probegroup, same_axes=False)
4037

41-
# remove when plot_probe_group has been removed
42-
with pytest.warns(DeprecationWarning):
43-
plot_probe_group(probegroup)
44-
4538
# 3d
4639
probegroup_3d = ProbeGroup()
4740
for probe in probegroup.probes:
@@ -74,6 +67,5 @@ def test_plot_probe_two_side():
7467

7568
if __name__ == "__main__":
7669
# test_plot_probe()
77-
# test_plot_probe_group()
7870
test_plot_probe_two_side()
7971
plt.show()

0 commit comments

Comments
 (0)