Fix a nagging inconvenience from my IDE in running tests, due to working directory...
[zxing.git] / core / test / src / com / google / zxing / oned / UPCABlackBox3ReflectiveTestCase.java
index e486eab..e4cd667 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 UPCABlackBox3ReflectiveTestCase extends AbstractBlackBoxTestCase {
 
   public UPCABlackBox3ReflectiveTestCase() {
-    super(new File("test/data/blackbox/upca-3"), new MultiFormatReader(), BarcodeFormat.UPC_A);
+    super("test/data/blackbox/upca-3", new MultiFormatReader(), BarcodeFormat.UPC_A);
     addTest(8, 8, 0.0f);
     addTest(6, 9, 180.0f);
   }