We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c6913e + 8e49668 commit c3b51beCopy full SHA for c3b51be
dubbo-compatible/src/test/java/org/apache/dubbo/serialization/SerializationTest.java
@@ -29,6 +29,8 @@
29
import org.hamcrest.Matchers;
30
import org.junit.jupiter.api.BeforeEach;
31
import org.junit.jupiter.api.Test;
32
+import org.junit.jupiter.api.condition.DisabledOnOs;
33
+import org.junit.jupiter.api.condition.OS;
34
35
import static org.hamcrest.MatcherAssert.assertThat;
36
import static org.hamcrest.Matchers.is;
@@ -74,6 +76,7 @@ void testObjectInput() throws IOException {
74
76
}
75
77
78
@Test
79
+ @DisabledOnOs(OS.WINDOWS) // Charset maynot UTF-8 on Windows JDK 8 ~ 17
80
void testWriteUTF() throws IOException {
81
myObjectOutput.writeUTF("Pace");
82
myObjectOutput.writeUTF("和平");
0 commit comments