Skip to content

Commit

Permalink
Merge pull request #12663 from gsmet/disable-rest-client-encoding-tes…
Browse files Browse the repository at this point in the history
…t-windows

Disable REST Client encoding test on Windows
  • Loading branch information
gsmet authored Oct 12, 2020
2 parents b035425 + 5e2444e commit 1cf83d4
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;

import io.quarkus.test.junit.QuarkusTest;
import io.restassured.RestAssured;
Expand Down Expand Up @@ -45,6 +47,7 @@ public void testMicroprofileClientCDIIntegration() {
.body(is("TEST"));
}

@DisabledOnOs(OS.WINDOWS)
@Test
public void testEmojis() {
RestAssured.when().get("/client/encoding")
Expand Down

0 comments on commit 1cf83d4

Please sign in to comment.