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 f99e6e3 commit 1b1425bCopy full SHA for 1b1425b
neo/test/iotest/test_axographio.py
@@ -259,8 +259,8 @@ def test_group_by_same_units(self):
259
assert_equal(len(blk.groups), 1)
260
assert_equal(len(blk.segments[0].analogsignals), 1)
261
262
- # names = [sig.name for sig in blk.segments[0].analogsignals]
263
- # assert_equal(names, ['Channel bundle (CAP,STIM) '])
+ chan_names = blk.segments[0].analogsignals[0].array_annotations['channel_names']
+ assert_equal(chan_names, ['CAP', 'STIM'])
264
265
sig = blk.segments[0].analogsignals[0][:5]
266
arr = sig.as_array('V')
0 commit comments