Index: C:/harmony/trunk_0427/modules/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/GZIPInputStreamTest.java =================================================================== --- C:/harmony/trunk_0427/modules/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/GZIPInputStreamTest.java (revision 420699) +++ C:/harmony/trunk_0427/modules/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/GZIPInputStreamTest.java (working copy) @@ -99,7 +99,7 @@ */ public void test_read$BII() { // test method java.util.zip.GZIPInputStream.readBII - byte orgBuf[] = { 3, 5, 2, 'r', 'g', 'e', 'f', 'd', 'e', 'w' }; + byte orgBuf[] = { '3', '5', '2', 'r', 'g', 'e', 'f', 'd', 'e', 'w' }; byte outBuf[] = new byte[100]; try { int result = 0; @@ -116,7 +116,7 @@ result += inGZIP.read(outBuf, result, outBuf.length - result); } assertEquals("the checkSum value of the compressed and decompressed data does not equal", - 3097700292L, inGZIP.getChecksum().getValue()); + 2074883667L, inGZIP.getChecksum().getValue()); for (int i = 0; i < orgBuf.length; i++) { assertTrue( "the decompressed data does not equal the orginal data decompressed", @@ -213,7 +213,7 @@ result += inGZIP.read(outBuf, result, outBuf.length - result); } assertEquals("the checkSum value of the compressed and decompressed data does not equal", - 3097700292L, inGZIP.getChecksum().getValue()); + 2074883667L, inGZIP.getChecksum().getValue()); inGZIP.close(); int r = 0; try {