From c4d57097df1e1ebf09c2dbb7d829f3f128a6f068 Mon Sep 17 00:00:00 2001 From: William Throwe Date: Thu, 1 Feb 2024 15:48:00 -0500 Subject: [PATCH] Move test into anonymous namespace --- tests/Unit/Evolution/DgSubcell/Test_NeighborTciDecision.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Unit/Evolution/DgSubcell/Test_NeighborTciDecision.cpp b/tests/Unit/Evolution/DgSubcell/Test_NeighborTciDecision.cpp index 8f086dda232f..17dfbc86552a 100644 --- a/tests/Unit/Evolution/DgSubcell/Test_NeighborTciDecision.cpp +++ b/tests/Unit/Evolution/DgSubcell/Test_NeighborTciDecision.cpp @@ -19,6 +19,7 @@ #include "Utilities/Gsl.hpp" namespace evolution::dg::subcell { +namespace { template void test() { using tag = subcell::Tags::NeighborTciDecisions; @@ -80,4 +81,5 @@ SPECTRE_TEST_CASE("Unit.Evolution.Subcell.NeighborTciDecision", test<2>(); test<3>(); } +} // namespace } // namespace evolution::dg::subcell