summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/java/org/apache/fop/util/ASCII85InputStreamTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/java/org/apache/fop/util/ASCII85InputStreamTestCase.java b/test/java/org/apache/fop/util/ASCII85InputStreamTestCase.java
index 33387894e..df7259d58 100644
--- a/test/java/org/apache/fop/util/ASCII85InputStreamTestCase.java
+++ b/test/java/org/apache/fop/util/ASCII85InputStreamTestCase.java
@@ -54,7 +54,7 @@ import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
-import org.apache.commons.io.IOUtil;
+import org.apache.commons.io.CopyUtils;
import org.apache.commons.io.output.ByteArrayOutputStream;
import org.apache.fop.pdf.PDFText;
@@ -85,7 +85,7 @@ public class ASCII85InputStreamTestCase extends TestCase {
InputStream in = new ByteArrayInputStream(ascii85);
InputStream decoder = new ASCII85InputStream(in);
ByteArrayOutputStream baout = new ByteArrayOutputStream();
- IOUtil.copy(decoder, baout);
+ CopyUtils.copy(decoder, baout);
baout.close();
return baout.toByteArray();
}