Fix a nagging inconvenience from my IDE in running tests, due to working directory...
[zxing.git] / core / test / src / com / google / zxing / oned / UPCEBlackBox3ReflectiveTestCase.java
index 011a506..ff5e129 100644 (file)
@@ -20,15 +20,13 @@ import com.google.zxing.MultiFormatReader;
 import com.google.zxing.BarcodeFormat;
 import com.google.zxing.common.AbstractBlackBoxTestCase;
 
-import java.io.File;
-
 /**
  * @author dswitkin@google.com (Daniel Switkin)
  */
 public final class UPCEBlackBox3ReflectiveTestCase extends AbstractBlackBoxTestCase {
 
   public UPCEBlackBox3ReflectiveTestCase() {
-    super(new File("test/data/blackbox/upce-3"), new MultiFormatReader(), BarcodeFormat.UPC_E);
+    super("test/data/blackbox/upce-3", new MultiFormatReader(), BarcodeFormat.UPC_E);
     addTest(4, 8, 0.0f);
     addTest(4, 8, 180.0f);
   }