Skip to content

Commit df74c64

Browse files
committed
test: add 6d tests
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 2c49033 commit df74c64

File tree

3 files changed

+2112
-2
lines changed

3 files changed

+2112
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/some-by/test/test.4d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@ tape( 'the function tests whether at `n` elements in a 4-dimensional ndarray pas
11621162
dt = 'float64';
11631163
ord = 'column-major';
11641164
sh = [ 2, 1, 2, 1 ];
1165-
st = [ -1, -2, -2, -2 ];
1165+
st = [ -1, -2, -2, -4 ];
11661166
o = strides2offset( sh, st );
11671167

11681168
x = ndarray( dt, zeros( numel( sh ), dt ), sh, st, o, ord );

lib/node_modules/@stdlib/ndarray/base/some-by/test/test.5d.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1291,7 +1291,7 @@ tape( 'the function tests whether at `n` elements in a 5-dimensional ndarray pas
12911291
dt = 'float64';
12921292
ord = 'column-major';
12931293
sh = [ 2, 1, 2, 1, 2 ];
1294-
st = [ -1, -2, -2, -2, -2 ];
1294+
st = [ -1, -2, -2, -4, -4 ];
12951295
o = strides2offset( sh, st );
12961296

12971297
x = ndarray( dt, zeros( numel( sh ), dt ), sh, st, o, ord );

0 commit comments

Comments
 (0)