Skip to content

Commit 5d3c84a

Browse files
test: fix element annotations in ndarray offset tests
PR-URL: #12345 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 0a24f0b commit 5d3c84a

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

lib/node_modules/@stdlib/blas/ext/base/capx/test/test.ndarray.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,10 @@ tape( 'the function supports an offset parameter', function test( t ) {
208208
-2.0,
209209
3.0, // 0
210210
-4.0, // 0
211-
0.0,
212-
0.0,
213-
5.0, // 1
214-
6.0, // 1
211+
0.0, // 1
212+
0.0, // 1
213+
5.0,
214+
6.0,
215215
0.0,
216216
0.0,
217217
0.0,
@@ -222,10 +222,10 @@ tape( 'the function supports an offset parameter', function test( t ) {
222222
-2.0,
223223
8.0, // 0
224224
-9.0, // 0
225-
5.0,
226-
-5.0,
227225
5.0, // 1
228-
6.0, // 1
226+
-5.0, // 1
227+
5.0,
228+
6.0,
229229
0.0,
230230
0.0,
231231
0.0,

lib/node_modules/@stdlib/blas/ext/base/capx/test/test.ndarray.native.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,10 @@ tape( 'the function supports an offset parameter', opts, function test( t ) {
217217
-2.0,
218218
3.0, // 0
219219
-4.0, // 0
220-
0.0,
221-
0.0,
222-
5.0, // 1
223-
6.0, // 1
220+
0.0, // 1
221+
0.0, // 1
222+
5.0,
223+
6.0,
224224
0.0,
225225
0.0,
226226
0.0,
@@ -231,10 +231,10 @@ tape( 'the function supports an offset parameter', opts, function test( t ) {
231231
-2.0,
232232
8.0, // 0
233233
-9.0, // 0
234-
5.0,
235-
-5.0,
236234
5.0, // 1
237-
6.0, // 1
235+
-5.0, // 1
236+
5.0,
237+
6.0,
238238
0.0,
239239
0.0,
240240
0.0,

0 commit comments

Comments
 (0)