]> source.dussan.org Git - poi.git/commitdiff
Bug 55036: fixed red build (Dec2Hex)
authorCédric Walter <cedricwalter@apache.org>
Sat, 12 Oct 2013 06:28:51 +0000 (06:28 +0000)
committerCédric Walter <cedricwalter@apache.org>
Sat, 12 Oct 2013 06:28:51 +0000 (06:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1531506 13f79535-47bb-0310-9956-ffa450edef68

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

index 8ff090cbe0816336b61f5e41b9accac91651bd7e..a2a77ebb2c082f43125169bccb9b2309ca421e02 100644 (file)
@@ -64,9 +64,8 @@ public final class TestDec2Hex extends TestCase {
                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() {