Skip to content

Commit 12b992e

Browse files
committed
test: address failing test cases
--- 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 b729264 commit 12b992e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ tape( 'the function adds a constant and calculates the sum of all strided array
6161

6262
x = new Float32Array( [ 1.0, 1.0e38, 1.0, -1.0e38 ] );
6363
v = sapxsumkbn( x.length, 5.0, x, 1, 0 );
64-
t.strictEqual( v, 12.0, 'returns expected value' );
64+
t.strictEqual( v, 22.0, 'returns expected value' );
6565

6666
t.end();
6767
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ tape( 'the function adds a constant and calculates the sum of all strided array
7070

7171
x = new Float32Array( [ 1.0, 1e38, 1.0, -1.0e38 ] );
7272
v = sapxsumkbn( x.length, 5.0, x, 1, 0 );
73-
t.strictEqual( v, 12.0, 'returns expected value' );
73+
t.strictEqual( v, 22.0, 'returns expected value' );
7474

7575
t.end();
7676
});

lib/node_modules/@stdlib/blas/ext/base/sapxsumkbn/test/test.sapxsumkbn.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ tape( 'the function adds a constant and calculates the sum of all strided array
6161

6262
x = new Float32Array( [ 1.0, 1.0e38, 1.0, -1.0e38 ] );
6363
v = sapxsumkbn( x.length, 5.0, x, 1 );
64-
t.strictEqual( v, 12.0, 'returns expected value' );
64+
t.strictEqual( v, 22.0, 'returns expected value' );
6565

6666
t.end();
6767
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ tape( 'the function adds a constant and calculates the sum of all strided array
179179

180180
x = new Float32Array( [ 1.0, 1.0e38, 1.0, -1.0e38 ] );
181181
v = sapxsumkbn( x.length, 5.0, x, 1 );
182-
t.strictEqual( v, 12.0, 'returns expected value' );
182+
t.strictEqual( v, 22.0, 'returns expected value' );
183183

184184
t.end();
185185
});

0 commit comments

Comments
 (0)