Take out some test code commmitted by accident.



git-svn-id: https://svn.apache.org/repos/asf/commons/proper/sanselan/trunk@1222297 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/test/java/org/apache/commons/sanselan/formats/tiff/TiffCcittTest.java b/src/test/java/org/apache/commons/sanselan/formats/tiff/TiffCcittTest.java
index 760e333..a00ff56 100644
--- a/src/test/java/org/apache/commons/sanselan/formats/tiff/TiffCcittTest.java
+++ b/src/test/java/org/apache/commons/sanselan/formats/tiff/TiffCcittTest.java
@@ -18,7 +18,6 @@
 package org.apache.commons.sanselan.formats.tiff;
 
 import java.awt.image.BufferedImage;
-import java.io.FileOutputStream;
 import java.io.IOException;
 import java.util.HashMap;
 
@@ -198,10 +197,6 @@
                 params.put(SanselanConstants.PARAM_KEY_COMPRESSION, TiffConstants.TIFF_COMPRESSION_CCITT_GROUP_3);
                 params.put(TiffConstants.PARAM_KEY_T4_OPTIONS, 4);
                 byte[] compressed = Sanselan.writeImageToBytes(image, ImageFormat.IMAGE_FORMAT_TIFF, params);
-                FileOutputStream fos = new FileOutputStream("/tmp/test.tiff");
-                fos.write(compressed);
-                fos.close();
-
                 BufferedImage result = Sanselan.getBufferedImage(compressed);
                 compareImages(image, result);
             } catch (ImageWriteException ex) {