Skip to content

Commit 850780e

Browse files
committed
name changed
1 parent fb262b3 commit 850780e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

examples/mf4_demo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@
150150

151151
types: list[npt.DTypeLike] = [
152152
("Channel_lookup_with_axis", "(2, 3)<u8"),
153-
("channel_axis_1", "(2, )<u8"),
154-
("channel_axis_2", "(3, )<u8"),
153+
("channel_Y_axis", "(2, )<u8"),
154+
("channel_X_axis", "(3, )<u8"),
155155
]
156156

157157
sig = Signal(

test/test_mdf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ def test_read_arrays(self) -> None:
162162
for j in range(1, 20):
163163
types: list[npt.DTypeLike] = [
164164
(f"Channel_{j}", "(2, 3)<u8"),
165-
(f"channel_{j}_axis_1", "(2, )<u8"),
166-
(f"channel_{j}_axis_2", "(3, )<u8"),
165+
(f"channel_{j}_Y_axis", "(2, )<u8"),
166+
(f"channel_{j}_X_axis", "(3, )<u8"),
167167
]
168168
dtype = np.dtype(types)
169169

@@ -539,8 +539,8 @@ def test_cut_arrays(self) -> None:
539539
for j in range(1, 20):
540540
types: list[npt.DTypeLike] = [
541541
(f"Channel_{j}", "(2, 3)<u8"),
542-
(f"channel_{j}_axis_1", "(2, )<u8"),
543-
(f"channel_{j}_axis_2", "(3, )<u8"),
542+
(f"channel_{j}_Y_axis", "(2, )<u8"),
543+
(f"channel_{j}_X_axis", "(3, )<u8"),
544544
]
545545
dtype = np.dtype(types)
546546

0 commit comments

Comments
 (0)