Skip to content

Commit

Permalink
Comment out flaky test.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasrosdal committed Nov 13, 2023
1 parent 24f4070 commit 4dcbb5f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void testInMemoryFonts() throws Exception{
assertArrayEquals(expectedOutput,str.toCharArray());
}

@Disabled
/*@Disabled
public void testSurrogatePair() throws Exception{
BaseFont baseFont = BaseFont.createFont("fonts/jp/GenShinGothic-Normal.ttf", BaseFont.IDENTITY_H, false);
Expand All @@ -78,7 +78,7 @@ public void testSurrogatePair() throws Exception{
String str = new String(processedContent, "UnicodeBigUnmarked");
char[] actual = str.toCharArray();
assertArrayEquals(expectedOutput, actual);
}
}*/

private byte[] getFontByte(String fileName) throws IOException {
InputStream stream = BaseFont.getResourceStream(fileName, null);
Expand Down

0 comments on commit 4dcbb5f

Please sign in to comment.