This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-starter-integration-tests.git


The following commit(s) were added to refs/heads/master by this push:
     new b4e1eba  SLING-13083 - Code acessing the "request-parts-iterator"  
request attribute broken after migration to Jakarta (#44)
b4e1eba is described below

commit b4e1ebaa111155a4e1becad7acf60e856ae5fc05
Author: Robert Munteanu <[email protected]>
AuthorDate: Fri Jan 30 14:50:38 2026 +0100

    SLING-13083 - Code acessing the "request-parts-iterator"  request attribute 
broken after migration to Jakarta (#44)
    
    Disable the test in a different way because test classes without any test 
methods cause
    failsafe IT failures.
---
 .../webapp/integrationtest/servlets/StreamedUploadTest.java        | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git 
a/src/main/java/org/apache/sling/starter/webapp/integrationtest/servlets/StreamedUploadTest.java
 
b/src/main/java/org/apache/sling/starter/webapp/integrationtest/servlets/StreamedUploadTest.java
index 1d6d862..c728317 100644
--- 
a/src/main/java/org/apache/sling/starter/webapp/integrationtest/servlets/StreamedUploadTest.java
+++ 
b/src/main/java/org/apache/sling/starter/webapp/integrationtest/servlets/StreamedUploadTest.java
@@ -36,8 +36,11 @@ public class StreamedUploadTest extends HttpTestBase {
     private static final String UPLOAD_MODE_HEADER = "Sling-uploadmode";
     private static final String STREAM_MODE = "stream";
 
-    // enable once SLING-13083 is fixed
-    public void disabledTestStreamedUploadWithJavaxPart() throws IOException {
+    public void testStreamedUploadWithJavaxPart() throws IOException {
+        // enable once SLING-13083 is fixed
+        if (true) {
+            return;
+        }
         final String url = HTTP_BASE_URL + SERVLET_PATH;
 
         // Create a test file to upload

Reply via email to