Skip to content

Commit 1ebeb8a

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
test: fix 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: na - 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 a4cb271 commit 1ebeb8a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/node_modules/@stdlib/blas/base/dsbmv/test/fixtures/column_major_l.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"uplo": "lower",
44
"N": 3,
55
"K": 1,
6-
"alpha": 2.0,
6+
"alpha": 1.0,
77
"A": [ 4.0, 1.0, 5.0, 2.0, 6.0, 0.0 ],
88
"A_mat": [
99
[ 4.0, 1.0, 0.0 ],
@@ -17,7 +17,7 @@
1717
"x": [ 1.0, 1.0, 1.0 ],
1818
"strideX": 1,
1919
"offsetX": 0,
20-
"beta": 1.0,
20+
"beta": 2.0,
2121
"y": [ 1.0, 1.0, 1.0 ],
2222
"strideY": 1,
2323
"offsetY": 0,

lib/node_modules/@stdlib/blas/base/dsbmv/test/fixtures/row_major_l.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
[ 1.0, 5.0, 2.0 ],
1111
[ 0.0, 2.0, 6.0 ]
1212
],
13+
"LDA": 2,
1314
"strideA1": 2,
1415
"strideA2": 1,
1516
"offsetA": 0,

0 commit comments

Comments
 (0)