Skip to content

Commit eb98874

Browse files
committed
test: fix dtypes
--- 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 dc86fb9 commit eb98874

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/ndarray/concat/test/test.assign.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -369,15 +369,15 @@ tape( 'the function throws an error if provided a second argument having an inva
369369
values = [
370370
[
371371
empty( [ 2 ], {
372-
'dtype': 'float32'
372+
'dtype': 'float64'
373373
}),
374374
empty( [ 2 ], {
375375
'dtype': 'float64'
376376
})
377377
]
378378
];
379379
out = zeros( [ 10 ], {
380-
'dtype': 'bool'
380+
'dtype': 'float64'
381381
});
382382

383383
for ( i = 0; i < values.length; i++ ) {
@@ -400,15 +400,15 @@ tape( 'the function throws an error if provided a second argument having an inva
400400
values = [
401401
[
402402
empty( [ 2 ], {
403-
'dtype': 'float32'
403+
'dtype': 'float64'
404404
}),
405405
empty( [ 2 ], {
406406
'dtype': 'float64'
407407
})
408408
]
409409
];
410410
out = zeros( [ 10 ], {
411-
'dtype': 'bool'
411+
'dtype': 'float64'
412412
});
413413

414414
for ( i = 0; i < values.length; i++ ) {

0 commit comments

Comments
 (0)