Index: src/test/java/org/apache/harmony/archive/tests/java/util/zip/DeflaterOutputStreamTest.java =================================================================== --- src/test/java/org/apache/harmony/archive/tests/java/util/zip/DeflaterOutputStreamTest.java (revision 486597) +++ src/test/java/org/apache/harmony/archive/tests/java/util/zip/DeflaterOutputStreamTest.java (working copy) @@ -91,7 +91,7 @@ defl = new Deflater(); dos = new MyDeflaterOutputStream(fos, defl); - // Test to see if DflaterOutputStream was created with the correct + // Test to see if DeflaterOutputStream was created with the correct // buffer. assertEquals("Incorrect Buffer Size", 512, dos.getProtectedBuf().length); @@ -108,7 +108,7 @@ FileOutputStream fos = new FileOutputStream(f1); MyDeflaterOutputStream dos = new MyDeflaterOutputStream(fos); - // Test to see if DflaterOutputStream was created with the correct + // Test to see if DeflaterOutputStream was created with the correct // buffer. assertEquals("Incorrect Buffer Size", 512, dos.getProtectedBuf().length); @@ -154,7 +154,7 @@ } catch (IllegalArgumentException e) { } - // Test to see if DflaterOutputStream was created with the correct + // Test to see if DeflaterOutputStream was created with the correct // buffer. dos = new MyDeflaterOutputStream(fos, defl, buf); assertEquals("Incorrect Buffer Size", 5, dos.getProtectedBuf().length); Index: src/test/java/org/apache/harmony/archive/tests/java/util/zip/DeflaterTest.java =================================================================== --- src/test/java/org/apache/harmony/archive/tests/java/util/zip/DeflaterTest.java (revision 486597) +++ src/test/java/org/apache/harmony/archive/tests/java/util/zip/DeflaterTest.java (working copy) @@ -853,7 +853,7 @@ for (int i = 0; i < byteArray.length; i++) { assertEquals(byteArray[i], outPutInf[i]); } - assertEquals("final decompressed data contained more bytes than original - construcotrIZ", + assertEquals("final decompressed data contained more bytes than original - constructorIZ", 0, outPutInf[byteArray.length]); infl.end();