Skip to content

Commit 69f6621

Browse files
committed
test: add missing 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 771492b commit 69f6621

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lib/node_modules/@stdlib/blas/ext/find-index/test/test.assign.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,10 @@ tape( 'the function throws an error if provided a callback which is not a functi
325325
var x;
326326
var y;
327327

328-
x = zeros( [], {
328+
x = zeros( [ 2, 2 ], {
329329
'dtype': 'generic'
330330
});
331-
x = zeros( [], {
331+
y = zeros( [], {
332332
'dtype': 'int32'
333333
});
334334

@@ -361,10 +361,10 @@ tape( 'the function throws an error if provided a callback which is not a functi
361361
var x;
362362
var y;
363363

364-
x = zeros( [], {
364+
x = zeros( [ 2, 2 ], {
365365
'dtype': 'generic'
366366
});
367-
x = zeros( [], {
367+
y = zeros( [], {
368368
'dtype': 'int32'
369369
});
370370

@@ -397,7 +397,7 @@ tape( 'the function throws an error if provided a callback which is not a functi
397397
var x;
398398
var y;
399399

400-
x = zeros( [], {
400+
x = zeros( [ 2, 2 ], {
401401
'dtype': 'generic'
402402
});
403403
y = zeros( [], {
@@ -433,10 +433,10 @@ tape( 'the function throws an error if provided a callback which is not a functi
433433
var x;
434434
var y;
435435

436-
x = zeros( [], {
436+
x = zeros( [ 2, 2 ], {
437437
'dtype': 'generic'
438438
});
439-
x = zeros( [], {
439+
y = zeros( [], {
440440
'dtype': 'int32'
441441
});
442442

0 commit comments

Comments
 (0)