From 885005a9493e77c2c06b687ef379903f7934dda1 Mon Sep 17 00:00:00 2001 From: Karan Anand Date: Sat, 16 May 2026 23:32:56 -0700 Subject: [PATCH] fix: update `blas/ext/base/gapx` TypeScript test type expectations --- 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_pkg_readmes status: na - task: lint_markdown_docs status: na - 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: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- .../@stdlib/blas/ext/base/gapx/docs/types/test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/gapx/docs/types/test.ts b/lib/node_modules/@stdlib/blas/ext/base/gapx/docs/types/test.ts index f50aa98372be..636feb8bf3be 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/gapx/docs/types/test.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/gapx/docs/types/test.ts @@ -27,7 +27,7 @@ import gapx = require( './index' ); const x = new Float64Array( 10 ); gapx( x.length, 5.0, x, 1 ); // $ExpectType Float64Array - gapx( x.length, 5.0, new AccessorArray( x ), 1 ); // $ExpectType AccessorArray + gapx( x.length, 5.0, new AccessorArray( x ), 1 ); // $ExpectType AccessorArray } // The compiler throws an error if the function is provided a first argument which is not a number... @@ -103,7 +103,7 @@ import gapx = require( './index' ); const x = new Float64Array( 10 ); gapx.ndarray( x.length, 5.0, x, 1, 0 ); // $ExpectType Float64Array - gapx.ndarray( x.length, 5.0, new AccessorArray( x ), 1, 0 ); // $ExpectType AccessorArray + gapx.ndarray( x.length, 5.0, new AccessorArray( x ), 1, 0 ); // $ExpectType AccessorArray } // The compiler throws an error if the `ndarray` method is provided a first argument which is not a number...