Skip to content

Commit 90db3ae

Browse files
committed
chore: clean-up
--- 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 4dfca99 commit 90db3ae

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ tape( 'if `x` contains only zeros and `β` is `1`, the function returns the seco
474474
data = rt;
475475

476476
a = new Float64Array( data.A );
477-
x = zeros( 3, 'float64' );
477+
x = zeros( 4, 'float64' );
478478
y = new Float64Array( data.y );
479479

480480
expected = new Float64Array( data.y );
@@ -497,7 +497,7 @@ tape( 'if `x` contains only zeros and `β` is `1`, the function returns the seco
497497
data = ct;
498498

499499
a = new Float64Array( data.A );
500-
x = zeros( 3, 'float64' );
500+
x = zeros( 4, 'float64' );
501501
y = new Float64Array( data.y );
502502

503503
expected = new Float64Array( data.y );

lib/node_modules/@stdlib/blas/base/dgemv/test/test.dgemv.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ tape( 'if `x` contains only zeros and `β` is `1`, the function returns the seco
483483
data = rt;
484484

485485
a = new Float64Array( data.A );
486-
x = zeros( 3, 'float64' );
486+
x = zeros( 4, 'float64' );
487487
y = new Float64Array( data.y );
488488

489489
expected = new Float64Array( data.y );
@@ -506,7 +506,7 @@ tape( 'if `x` contains only zeros and `β` is `1`, the function returns the seco
506506
data = ct;
507507

508508
a = new Float64Array( data.A );
509-
x = zeros( 3, 'float64' );
509+
x = zeros( 4, 'float64' );
510510
y = new Float64Array( data.y );
511511

512512
expected = new Float64Array( data.y );

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ tape( 'if `x` contains only zeros and `β` is `1`, the function returns the seco
433433
data = rt;
434434

435435
a = new Float64Array( data.A );
436-
x = zeros( 3, 'float64' );
436+
x = zeros( 4, 'float64' );
437437
y = new Float64Array( data.y );
438438

439439
expected = new Float64Array( data.y );
@@ -456,7 +456,7 @@ tape( 'if `x` contains only zeros and `β` is `1`, the function returns the seco
456456
data = ct;
457457

458458
a = new Float64Array( data.A );
459-
x = zeros( 3, 'float64' );
459+
x = zeros( 4, 'float64' );
460460
y = new Float64Array( data.y );
461461

462462
expected = new Float64Array( data.y );

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ tape( 'if `x` contains only zeros and `β` is `1`, the function returns the seco
442442
data = rt;
443443

444444
a = new Float64Array( data.A );
445-
x = zeros( 3, 'float64' );
445+
x = zeros( 4, 'float64' );
446446
y = new Float64Array( data.y );
447447

448448
expected = new Float64Array( data.y );
@@ -465,7 +465,7 @@ tape( 'if `x` contains only zeros and `β` is `1`, the function returns the seco
465465
data = ct;
466466

467467
a = new Float64Array( data.A );
468-
x = zeros( 3, 'float64' );
468+
x = zeros( 4, 'float64' );
469469
y = new Float64Array( data.y );
470470

471471
expected = new Float64Array( data.y );

0 commit comments

Comments
 (0)