]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Update assertions to reflect recent modification to the method in question
authorAndreas L. Delmelle <adelmelle@apache.org>
Sun, 4 Jun 2006 10:10:54 +0000 (10:10 +0000)
committerAndreas L. Delmelle <adelmelle@apache.org>
Sun, 4 Jun 2006 10:10:54 +0000 (10:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@411545 13f79535-47bb-0310-9956-ffa450edef68

test/java/org/apache/fop/util/UnitConvTestCase.java

index 32d92473dc70134e141cc457789fe75b5af9d223..059f0bf1dfa18be995a01ec499aa1fac8070a43a 100644 (file)
@@ -38,8 +38,8 @@ public class UnitConvTestCase extends TestCase {
         assertEquals("in2mpt", 792000, UnitConv.in2mpt(11.0), 1.0 / 2); //height of a letter page
         assertEquals("mpt2in", 11.0, UnitConv.mpt2in(792000), 0.01 / 2); //height of a letter page
         
-        assertEquals("mm2px/72dpi", 842, UnitConv.mm2px(297, 72), 0.0001);
-        assertEquals("mm2px/300dpi", 3508, UnitConv.mm2px(297, 300), 0.0001);
+        assertEquals("mm2px/72dpi", (297.0/UnitConv.IN2MM) * 72, UnitConv.mm2px(297.0, 72), 0);
+        assertEquals("mm2px/300dpi", (297.0/UnitConv.IN2MM) * 300, UnitConv.mm2px(297.0, 300), 0);
     }
     
 }
\ No newline at end of file