Skip to content

Commit 144325b

Browse files
committed
fix: apply suggestions from code review
--- 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 d28a6af commit 144325b

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/ndarray/base/every/test

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/ndarray/base/every/test/test.2d.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -944,7 +944,7 @@ tape( 'the function tests whether every element in a 2-dimensional ndarray is tr
944944
dt = 'complex128';
945945
ord = 'column-major';
946946
sh = [ 2, 2 ];
947-
st = [ 4, -1 ];
947+
st = [ -1, 4 ];
948948
o = strides2offset( sh, st );
949949

950950
x = ndarray( dt, zeros( 8, dt ), sh, st, o, ord );
@@ -1118,7 +1118,7 @@ tape( 'the function tests whether every element in a 2-dimensional ndarray is tr
11181118
dt = 'float64';
11191119
ord = 'column-major';
11201120
sh = [ 2, 2 ];
1121-
st = [ 4, -1 ];
1121+
st = [ -1, 4 ];
11221122
o = strides2offset( sh, st );
11231123

11241124
x = ndarray( dt, toAccessorArray( zeros( 8, dt ) ), sh, st, o, ord );

0 commit comments

Comments
 (0)