Author: sebb Date: Mon May 17 20:09:18 2010 New Revision: 945336 URL: http://svn.apache.org/viewvc?rev=945336&view=rev Log: Oops - use the correct case for the test file name...
Modified: commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/TarTestCase.java Modified: commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/TarTestCase.java URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/TarTestCase.java?rev=945336&r1=945335&r2=945336&view=diff ============================================================================== --- commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/TarTestCase.java (original) +++ commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/archivers/TarTestCase.java Mon May 17 20:09:18 2010 @@ -115,7 +115,7 @@ public final class TarTestCase extends A } public void testCOMPRESS114() throws Exception { - final File input = getFile("compress-114.tar"); + final File input = getFile("COMPRESS-114.tar"); final InputStream is = new FileInputStream(input); final ArchiveInputStream in = new ArchiveStreamFactory().createArchiveInputStream("tar", is); TarArchiveEntry entry = (TarArchiveEntry)in.getNextEntry();