Skip to content

Commit 4bc20be

Browse files
committed
Fix probe repr in ibl tests
1 parent 2c94bac commit 4bc20be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/spikeinterface/extractors/tests/test_iblextractors.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ def test_offsets(self):
7676

7777
def test_probe_representation(self):
7878
probe = self.recording.get_probe()
79-
expected_probe_representation = "Probe - 384ch"
79+
# we simply check that the probe has 384 channels in its representation
80+
expected_probe_representation = "384ch"
8081
assert expected_probe_representation in repr(probe)
8182

8283
def test_property_keys(self):

0 commit comments

Comments
 (0)