Skip to content

Commit 006274e

Browse files
committed
test: fix strides
--- 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 1ad050f commit 006274e

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

lib/node_modules/@stdlib/stats/max-by/test/test.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10931093
var x;
10941094

10951095
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1096-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1096+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10971097

10981098
out = emptyLike( x, {
10991099
'shape': []

lib/node_modules/@stdlib/stats/max-by/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10491049
var x;
10501050

10511051
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1052-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1052+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10531053

10541054
indices = [];
10551055
values = [];

lib/node_modules/@stdlib/stats/min-by/test/test.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10931093
var x;
10941094

10951095
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1096-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1096+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10971097

10981098
out = emptyLike( x, {
10991099
'shape': []

lib/node_modules/@stdlib/stats/min-by/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10491049
var x;
10501050

10511051
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1052-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1052+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10531053

10541054
indices = [];
10551055
values = [];

lib/node_modules/@stdlib/stats/nanmin-by/test/test.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ tape( 'the function supports specifying the callback execution context (column-m
11061106
var x;
11071107

11081108
xbuf = [ -1.0, 2.0, NaN, 4.0 ];
1109-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1109+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
11101110

11111111
out = emptyLike( x, {
11121112
'shape': []

lib/node_modules/@stdlib/stats/nanmin-by/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10861086
var x;
10871087

10881088
xbuf = [ -1.0, 2.0, NaN, 4.0 ];
1089-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1089+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10901090

10911091
indices = [];
10921092
values = [];

lib/node_modules/@stdlib/stats/range-by/test/test.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10931093
var x;
10941094

10951095
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1096-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1096+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10971097

10981098
out = emptyLike( x, {
10991099
'shape': []

lib/node_modules/@stdlib/stats/range-by/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10491049
var x;
10501050

10511051
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1052-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1052+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10531053

10541054
indices = [];
10551055
values = [];

0 commit comments

Comments
 (0)