From fb11ff4aa467c641ae231f8c6ea66f25c4e6436d Mon Sep 17 00:00:00 2001 From: Tara Drwenski Date: Wed, 27 Dec 2023 08:33:18 -0600 Subject: [PATCH] Add NeedsExternalResource category to test that uses the downloads page --- tds/src/test/java/thredds/server/config/TdsContextTest.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tds/src/test/java/thredds/server/config/TdsContextTest.java b/tds/src/test/java/thredds/server/config/TdsContextTest.java index bc6b895ce6..12c6f88de3 100644 --- a/tds/src/test/java/thredds/server/config/TdsContextTest.java +++ b/tds/src/test/java/thredds/server/config/TdsContextTest.java @@ -14,10 +14,11 @@ import ucar.unidata.util.test.category.NeedsContentRoot; import java.lang.invoke.MethodHandles; import java.util.Map; +import ucar.unidata.util.test.category.NeedsExternalResource; @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = {"/WEB-INF/applicationContext.xml"}, loader = MockTdsContextLoader.class) -@Category(NeedsContentRoot.class) +@Category({NeedsContentRoot.class, NeedsExternalResource.class}) public class TdsContextTest { private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());