Skip to content

Commit 3ab83ba

Browse files
committed
test: update fixtures to use Float32 inputs
--- 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: 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 5a7e089 commit 3ab83ba

File tree

2 files changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/fast/hypotf/test/fixtures/julia

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/fast/hypotf/test/fixtures/julia/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/math/base/special/fast/hypotf/test/fixtures/julia/runner.jl

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ julia> gen( x, y, \"data.json\" );
3838
```
3939
"""
4040
function gen( x, y, name )
41-
h = hypot.( x, y );
41+
h = hypot.( convert( Array{Float32}, x ), convert( Array{Float32}, y ) );
4242

4343
# Store data to be written to file as a collection:
4444
data = Dict([

0 commit comments

Comments
 (0)