]> source.dussan.org Git - poi.git/commitdiff
expand range of acceptable values in TestFonts
authorPJ Fanning <fanningpj@apache.org>
Mon, 10 Jul 2017 07:26:40 +0000 (07:26 +0000)
committerPJ Fanning <fanningpj@apache.org>
Mon, 10 Jul 2017 07:26:40 +0000 (07:26 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1801416 13f79535-47bb-0310-9956-ffa450edef68

src/ooxml/testcases/org/apache/poi/sl/TestFonts.java

index a34b007009045ed6dd732aebc395019cfd863199..f395a84a4b051368a759ccd72941f79db20f196a 100644 (file)
@@ -18,7 +18,6 @@
 package org.apache.poi.sl;
 
 import static org.apache.poi.sl.SLCommonUtils.xslfOnly;
-import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertTrue;
 import static org.junit.Assume.assumeFalse;
 
@@ -74,7 +73,7 @@ public class TestFonts {
     private static final String INIT_FONTS[] = { "mona.ttf" };
     
     // currently linux and mac return quite different values
-    private static final int[] expected_sizes = { 311, 312, 313, 399 };
+    private static final int[] expected_sizes = { 311, 312, 313, 398, 399 };
     
     @BeforeClass
     public static void initGE() throws FontFormatException, IOException {
@@ -108,7 +107,7 @@ public class TestFonts {
         Rectangle2D anc = tb.getAnchor();
         // ignore font metrics differences on windows / linux (... hopefully ...)
         boolean found = Arrays.binarySearch(expected_sizes, (int)anc.getHeight()) > -1;
-        assertTrue(found);
+        assertTrue((int)anc.getHeight() + " not found in list of exepcted values", found);
 //        setFont(tb, "Mona");
 //        FileOutputStream fos = new FileOutputStream("bla-xslf.ppt");
 //        ppt.write(fos);