From 16b652a13e4e574e77c7f83988b2201397506590 Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Thu, 20 Nov 2025 18:24:58 +0200 Subject: [PATCH] test(continuum): Remove duplicate test_helpers.jl include Replace include statement with comment noting that test_helpers.jl is included by parent runtests.jl. This eliminates method overwrite warnings for create_test_mesh() and create_test_kernel(). The parent test suite (runtests.jl) includes test_helpers.jl once, making it available to all sub-tests. --- test/domains/continuum/test_reset_functions.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/domains/continuum/test_reset_functions.jl b/test/domains/continuum/test_reset_functions.jl index 99abceb..e49962b 100644 --- a/test/domains/continuum/test_reset_functions.jl +++ b/test/domains/continuum/test_reset_functions.jl @@ -6,7 +6,7 @@ using LinearAlgebra using SparseArrays # For nnz() using Test -include("test_helpers.jl") +# test_helpers.jl is included by runtests.jl @testset "reset! functions" begin kernel = create_test_kernel()