Skip to content

Commit 78ad0a6

Browse files
committed
fix: use correct fixture
--- 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 ddf9bbe commit 78ad0a6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/node_modules/@stdlib/lapack/base/dgtts2/test/test.dgtts2.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ var ROW_MAJOR_NO_TRANS_NRHS_GT_ONE = require( './fixtures/row_major_no_trans_nrh
3838
var COL_MAJOR_NO_TRANS_NRHS_EQ_ONE = require( './fixtures/col_major_no_trans_nrhs_eq_one.json' );
3939
var COL_MAJOR_TRANS_NRHS_EQ_ONE = require( './fixtures/col_major_trans_nrhs_eq_one.json' );
4040
var ROW_MAJOR_TRANS_NRHS_EQ_ONE = require( './fixtures/row_major_trans_nrhs_eq_one.json' );
41+
var ROW_MAJOR_NO_TRANS_NRHS_EQ_ONE = require( './fixtures/row_major_no_trans_nrhs_eq_one.json' );
4142

4243
var COL_MAJOR_TRANS_IPIV_NE_I = require( './fixtures/col_major_trans_ipiv_ne_i.json' );
4344
var COL_MAJOR_NO_TRANS_IPIV_NE_I = require( './fixtures/col_major_no_trans_ipiv_ne_i.json' );
@@ -182,7 +183,7 @@ tape( 'the function solves A * X = B (row-major, nrhs <= 1)', function test( t )
182183
var B;
183184
var X;
184185

185-
data = ROW_MAJOR_TRANS_NRHS_EQ_ONE;
186+
data = ROW_MAJOR_NO_TRANS_NRHS_EQ_ONE;
186187

187188
DL = new Float64Array( data.DL );
188189
D = new Float64Array( data.D );

0 commit comments

Comments
 (0)