Skip to content

Commit

Permalink
Enable tests on Windows
Browse files Browse the repository at this point in the history
Related bug has been resolved.
  • Loading branch information
jsmrcka committed Aug 25, 2021
1 parent 2b87db2 commit 7d0a2c6
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
import org.apache.commons.io.IOUtils;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;

import io.quarkus.test.scenarios.QuarkusScenario;
import io.restassured.RestAssured;
Expand Down Expand Up @@ -46,8 +44,6 @@ public void testMultipartIsSendAndReceived() {
.contentType("multipart/form-data");
}

// TODO: https://github.com/quarkusio/quarkus/issues/19535
@DisabledOnOs(OS.WINDOWS)
@Test
public void testTextVersionOfMultipart() {
whenSendMultipartData("/multipart/echo")
Expand All @@ -59,8 +55,6 @@ public void testTextVersionOfMultipart() {
containsString(TEXT_WITH_DIACRITICS));
}

// TODO: https://github.com/quarkusio/quarkus/issues/19535
@DisabledOnOs(OS.WINDOWS)
@Test
public void testTextPartFromMultipart() {
whenSendMultipartData("/multipart/text")
Expand Down

0 comments on commit 7d0a2c6

Please sign in to comment.