Skip to content

Commit 58d7af6

Browse files
committed
test: fix failing tests
--- 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 c20d54c commit 58d7af6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/node_modules/@stdlib/blas/base/cgemv/test/test.cgemv.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -682,7 +682,7 @@ tape( 'if `α` is `0` and `β` is `0`, the function zeros the second input vecto
682682
alpha = new Complex64( 0.0, 0.0 );
683683
beta = new Complex64( 0.0, 0.0 );
684684

685-
expected = new Complex64Array( data.y.length );
685+
expected = new Complex64Array( y.length );
686686

687687
out = cgemv( data.order, data.trans, data.M, data.N, alpha, a, data.lda, x, data.strideX, beta, y, data.strideY );
688688
t.strictEqual( isSameComplex64Array( out, expected ), true, 'returns expected value' );
@@ -709,7 +709,7 @@ tape( 'if `α` is `0` and `β` is `0`, the function zeros the second input vecto
709709
alpha = new Complex64( 0.0, 0.0 );
710710
beta = new Complex64( 0.0, 0.0 );
711711

712-
expected = new Complex64Array( data.y.length );
712+
expected = new Complex64Array( y.length );
713713

714714
out = cgemv( data.order, data.trans, data.M, data.N, alpha, a, data.lda, x, data.strideX, beta, y, data.strideY );
715715
t.strictEqual( isSameComplex64Array( out, expected ), true, 'returns expected value' );

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ tape( 'if `α` is `0` and `β` is `0`, the function zeros the second input vecto
667667
alpha = new Complex64( 0.0, 0.0 );
668668
beta = new Complex64( 0.0, 0.0 );
669669

670-
expected = new Complex64Array( data.y.length );
670+
expected = new Complex64Array( y.length );
671671

672672
out = cgemv( data.trans, data.M, data.N, alpha, a, data.strideA1, data.strideA2, data.offsetA, x, data.strideX, data.offsetX, beta, y, data.strideY, data.offsetY );
673673
t.strictEqual( isSameComplex64Array( out, expected ), true, 'returns expected value' );
@@ -694,7 +694,7 @@ tape( 'if `α` is `0` and `β` is `0`, the function zeros the second input vecto
694694
alpha = new Complex64( 0.0, 0.0 );
695695
beta = new Complex64( 0.0, 0.0 );
696696

697-
expected = new Complex64Array( data.y.length );
697+
expected = new Complex64Array( y.length );
698698

699699
out = cgemv( data.trans, data.M, data.N, alpha, a, data.strideA1, data.strideA2, data.offsetA, x, data.strideX, data.offsetX, beta, y, data.strideY, data.offsetY );
700700
t.strictEqual( isSameComplex64Array( out, expected ), true, 'returns expected value' );

0 commit comments

Comments
 (0)