From af8c89e15a49ee6393031f1a8b8964abbaff8cb4 Mon Sep 17 00:00:00 2001 From: David Eldon Date: Mon, 29 Jul 2024 08:17:12 -0700 Subject: [PATCH] Fixup --- src/SD4SOLPS.jl | 2 +- test/runtests.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SD4SOLPS.jl b/src/SD4SOLPS.jl index b03c127..9c3584b 100644 --- a/src/SD4SOLPS.jl +++ b/src/SD4SOLPS.jl @@ -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 diff --git a/test/runtests.jl b/test/runtests.jl index 2e39b6b..75ce155 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -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