You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2013/10/12 08:28:52 UTC

svn commit: r1531506 - /poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestDec2Hex.java

Author: cedricwalter
Date: Sat Oct 12 06:28:51 2013
New Revision: 1531506

URL: http://svn.apache.org/r1531506
Log:
Bug 55036: fixed red build (Dec2Hex)

Modified:
    poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestDec2Hex.java

Modified: poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestDec2Hex.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestDec2Hex.java?rev=1531506&r1=1531505&r2=1531506&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestDec2Hex.java (original)
+++ poi/trunk/src/testcases/org/apache/poi/ss/formula/functions/TestDec2Hex.java Sat Oct 12 06:28:51 2013
@@ -64,9 +64,8 @@ public final class TestDec2Hex extends T
 		confirmValue("Converts decimal 100 to hexadecimal with 10 (default) characters", "100","10", "0000000064");
 		confirmValue("If argument places contains a decimal value, dec2hex ignores the numbers to the right side of the decimal point.", "100","10.0", "0000000064");
 
-		confirmValue("Converts decimal -54 to hexadecimal, 0 is ignored", "-54", "0",  "00000FFFCA");
-		confirmValue("Converts decimal -54 to hexadecimal, 2 is ignored","-54", "2",  "00000FFFCA");
-		confirmValue("places is optionnal","-54", "00000FFFCA");
+		confirmValue("Converts decimal -54 to hexadecimal, 2 is ignored","-54", "2",  "FFFFFFFFCA");
+		confirmValue("places is optionnal","-54", "FFFFFFFFCA");
 	}
 
     public void testErrors() {



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org