Skip to content

Commit c0d64d3

Browse files
committed
plot_probe_group -> plot_probegroup
1 parent 3a35019 commit c0d64d3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/test_plotting.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from probeinterface import Probe, ProbeGroup
22
from probeinterface import generate_dummy_probe, generate_dummy_probe_group
3-
from probeinterface.plotting import plot_probe, plot_probe_group
3+
from probeinterface.plotting import plot_probe, plot_probegroup
44

55
import matplotlib.pyplot as plt
66
import numpy as np
@@ -29,18 +29,18 @@ def test_plot_probe():
2929
plot_probe(probe, show_channel_on_click=True)
3030

3131

32-
def test_plot_probe_group():
32+
def test_plot_probegroup():
3333
probegroup = generate_dummy_probe_group()
3434

35-
plot_probe_group(probegroup, same_axes=True, with_contact_id=True)
36-
plot_probe_group(probegroup, same_axes=False)
35+
plot_probegroup(probegroup, same_axes=True, with_contact_id=True)
36+
plot_probegroup(probegroup, same_axes=False)
3737

3838
# 3d
3939
probegroup_3d = ProbeGroup()
4040
for probe in probegroup.probes:
4141
probegroup_3d.add_probe(probe.to_3d())
4242
probegroup_3d.probes[-1].move([0, 150, -50])
43-
plot_probe_group(probegroup_3d, same_axes=True)
43+
plot_probegroup(probegroup_3d, same_axes=True)
4444

4545

4646
if __name__ == "__main__":

0 commit comments

Comments
 (0)