From 4e9c49a820ff9ab03489a56eb340ad671e7cc007 Mon Sep 17 00:00:00 2001 From: Jan Bartel Date: Wed, 23 Oct 2024 16:48:59 +1100 Subject: [PATCH] Remove Disabled ResourceHandlerByteRangesTest test as no longer appropriate. --- .../server/handler/ResourceHandlerByteRangesTest.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/jetty-core/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ResourceHandlerByteRangesTest.java b/jetty-core/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ResourceHandlerByteRangesTest.java index b4e84ffe7a63..6924a8fd824e 100644 --- a/jetty-core/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ResourceHandlerByteRangesTest.java +++ b/jetty-core/jetty-server/src/test/java/org/eclipse/jetty/server/handler/ResourceHandlerByteRangesTest.java @@ -44,7 +44,6 @@ import org.hamcrest.Matchers; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; @@ -336,13 +335,6 @@ public void testTwoRanges() throws Exception testTwoRanges(HttpHeader.RANGE, "multipart/byteranges"); } - @Test - @Disabled - public void testTwoRangesObsolete() throws Exception - { - testTwoRanges(HttpHeader.REQUEST_RANGE, "multipart/x-byteranges"); - } - private void testTwoRanges(HttpHeader requestRangeHeader, String responseContentType) throws Exception { HttpTester.Request request = HttpTester.newRequest();