Skip to content

Commit

Permalink
Test setting MLLP default charset from system property for native mode
Browse files Browse the repository at this point in the history
Fixes #2554
  • Loading branch information
jamesnetherton committed Jun 14, 2021
1 parent bd4bea4 commit 1eca8da
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
*/
package org.apache.camel.quarkus.component.mllp.it;

import io.quarkus.test.junit.DisabledOnNativeImage;
import io.quarkus.test.junit.QuarkusTest;
import io.restassured.RestAssured;
import org.junit.jupiter.api.Test;
Expand Down Expand Up @@ -56,7 +55,6 @@ public void invalidMessage() {
}

@Test
@DisabledOnNativeImage("https://github.com/apache/camel-quarkus/issues/2554")
public void testCharsetFromMsh18() {
// Set up the message with a charset and some characters that it cannot deal with
String messageWithCharset = HL7_MESSAGE.replace("NE||", "NE||ISO-8859-1").replace("INHOUSE", "ÏNHOUSE");
Expand All @@ -80,7 +78,6 @@ public void testCharsetFromMsh18() {
}

@Test
@DisabledOnNativeImage("https://github.com/apache/camel-quarkus/issues/2554")
public void testDefaultCharsetFromSystemProperty() {
RestAssured.get("/mllp/charset/default")
.then()
Expand Down

0 comments on commit 1eca8da

Please sign in to comment.