From 7688751ab7502e03a378c99196d9493e9bca0298 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Fri, 5 Jun 2026 04:15:56 -0400 Subject: [PATCH] Run Runic formatter on the repository Apply Runic.jl v1 formatting so the FormatCheck CI (the centralized SciML/.github runic.yml@v1 reusable workflow) passes. The only change is expanding a `let ... end` one-liner in test/runtests.jl into multi-line form; it is formatting-only and semantically identical. `runic --check` over `git ls-files '*.jl'` is clean after this commit. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- test/runtests.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 2d8867c..d98e336 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,7 +1,9 @@ using DASSL, Test using LinearAlgebra: diagm, I -const GROUP = let g = get(ENV, "GROUP", "all"); isempty(g) ? "all" : g end +const GROUP = let g = get(ENV, "GROUP", "all") + isempty(g) ? "all" : g +end if GROUP == "all" || GROUP == "core" @testset "Testing maxorder" begin