From: Jeremias Maerki Date: Thu, 17 Dec 2009 14:32:13 +0000 (+0000) Subject: Fixed test case: #CMYK pseudo-profile comes before the color profile URI. X-Git-Tag: fop-1_0~89 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=82dbf4af9c230ad4c270229f6b3b2fbda7f3e3b6;p=xmlgraphics-fop.git Fixed test case: #CMYK pseudo-profile comes before the color profile URI. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@891726 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/java/org/apache/fop/traits/BorderPropsTestCase.java b/test/java/org/apache/fop/traits/BorderPropsTestCase.java index 0c08e05af..aaaeaf526 100644 --- a/test/java/org/apache/fop/traits/BorderPropsTestCase.java +++ b/test/java/org/apache/fop/traits/BorderPropsTestCase.java @@ -52,7 +52,7 @@ public class BorderPropsTestCase extends TestCase { CMYKColorSpace cmykCs = CMYKColorSpace.getInstance(); float[] rgb = cmykCs.toRGB(cmyk); col = ColorExt.createFromFoRgbIcc(rgb[0], rgb[1], rgb[2], - null, "#CMYK", cmykCs, cmyk); + "#CMYK", null, cmykCs, cmyk); b1 = new BorderProps(Constants.EN_INSET, 9999, col, BorderProps.SEPARATE); ser = b1.toString();