From 00b714d2b99a9d44340ba518f6edd4ad7f02c629 Mon Sep 17 00:00:00 2001 From: "Chris Rackauckas (Claude)" Date: Sat, 13 Jun 2026 05:20:49 -0400 Subject: [PATCH] test: add missing `using Test` to runtests.jl (fixes @testset UndefVarError) Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- test/runtests.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/test/runtests.jl b/test/runtests.jl index 1482063..98ea2fe 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,4 +1,5 @@ using Pkg +using Test const GROUP = get(ENV, "GROUP", "All")