Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
eldond committed Jul 29, 2024
1 parent dfac962 commit af8c89e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SD4SOLPS.jl
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ function preparation(
print("Exporting to file: ")
if output_format == "json"
println(filename * ".json")
IMASDD.imas2json(dd, filename * ".json", strict=true, freeze=false)
IMASDD.imas2json(dd, filename * ".json"; strict=true, freeze=false)
else
throw(ArgumentError(string("Unrecognized output format: ", output_format)))
end
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ if args["preparation"]
@test size(psirz) == (length(r), length(z))
println(out_file)
@test isfile(out_file)
println("imas2json timing: ")
print("imas2json timing: ")
@time IMASDD.imas2json(dd, filename * ".json", strict=true, freeze=false)
end
end

0 comments on commit af8c89e

Please sign in to comment.