Skip to content

Commit 5e1207f

Browse files
committed
test: add 8d 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 6a33dc1 commit 5e1207f

File tree

3 files changed

+2463
-2
lines changed

3 files changed

+2463
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@ tape( 'the function tests whether at `n` elements in a 6-dimensional ndarray pas
721721
dt = 'complex128';
722722
ord = 'row-major';
723723
sh = [ 1, 2, 1, 2, 1, 2 ];
724-
st = [ -4, -4, -4, -2, -2, -1 ];
724+
st = [ -8, -4, -4, -2, -2, -1 ];
725725
o = strides2offset( sh, st );
726726

727727
xbuf = zeros( numel( sh )*2, 'float64' );

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ tape( 'the function tests whether at `n` elements in a 7-dimensional ndarray pas
760760
dt = 'complex128';
761761
ord = 'row-major';
762762
sh = [ 1, 1, 2, 1, 2, 1, 2 ];
763-
st = [ -4, -4, -4, -4, -2, -2, -1 ];
763+
st = [ -8, -8, -4, -4, -2, -2, -1 ];
764764
o = strides2offset( sh, st );
765765

766766
xbuf = zeros( numel( sh )*2, 'float64' );

0 commit comments

Comments
 (0)