Skip to content

Commit

Permalink
Reduce max name length in restart interpolation test, prevent HDF5 error
Browse files Browse the repository at this point in the history
  • Loading branch information
johnomotani committed Oct 7, 2024
1 parent 8025634 commit df5e3e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moment_kinetics/test/restart_interpolation_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ function run_test(test_input, base, message, rtol, atol; tol_3V, args...)
name = string(name, "_", (stringify_arg(k, v) for (k, v) in args)...)
end
# Make sure name is not too long
if length(name) > 80
name = name[1:80]
if length(name) > 60
name = name[1:60]
end
if parallel_io
name *= "parallel-io"
Expand Down

0 comments on commit df5e3e1

Please sign in to comment.