Skip to content

Commit 6d52968

Browse files
Shabareesh ShettyShabareesh Shetty
authored andcommitted
test: update test description
--- 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 d3e5a48 commit 6d52968

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/blas/base/dsbmv/test/test.ndarray.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (co
640640
t.end();
641641
});
642642

643-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=1, sy=1)', function test( t ) {
643+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=2, sy=2)', function test( t ) {
644644
var expected;
645645
var out;
646646
var a;
@@ -660,7 +660,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (ro
660660
t.end();
661661
});
662662

663-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=1, sy=1)', function test( t ) {
663+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=2, sy=2)', function test( t ) {
664664
var expected;
665665
var out;
666666
var a;
@@ -680,7 +680,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (co
680680
t.end();
681681
});
682682

683-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=1, sy=-1)', function test( t ) {
683+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=2, sy=-1)', function test( t ) {
684684
var expected;
685685
var out;
686686
var a;
@@ -700,7 +700,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (ro
700700
t.end();
701701
});
702702

703-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=1, sy=-1)', function test( t ) {
703+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=2, sy=-1)', function test( t ) {
704704
var expected;
705705
var out;
706706
var a;
@@ -720,7 +720,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (co
720720
t.end();
721721
});
722722

723-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=-1, sy=1)', function test( t ) {
723+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (row-major, sx=-1, sy=2)', function test( t ) {
724724
var expected;
725725
var out;
726726
var a;
@@ -740,7 +740,7 @@ tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (ro
740740
t.end();
741741
});
742742

743-
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=-1, sy=1)', function test( t ) {
743+
tape( 'the function performs the matrix-vector operation `y = α*A*x + β*y` (column-major, sx=-1, sy=2)', function test( t ) {
744744
var expected;
745745
var out;
746746
var a;

0 commit comments

Comments
 (0)