Skip to content

Commit

Permalink
Merge pull request #274 from mabarnes/fix-restart-interpolation-file-…
Browse files Browse the repository at this point in the history
…name-length

Fix failures of 'long tests' CI job
  • Loading branch information
johnomotani authored Oct 7, 2024
2 parents 8025634 + df5e3e1 commit 097ee11
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 097ee11

Please sign in to comment.