Fix a nagging inconvenience from my IDE in running tests, due to working directory...
[zxing.git] / core / test / src / com / google / zxing / oned / UPCABlackBox4TestCase.java
index 699e02a..316bd02 100644 (file)
@@ -20,17 +20,15 @@ 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 UPCABlackBox4TestCase extends AbstractBlackBoxTestCase {
 
   public UPCABlackBox4TestCase() {
-    super(new File("test/data/blackbox/upca-4"), new MultiFormatReader(), BarcodeFormat.UPC_A);
-    addTest(8, 10, 0.0f);
-    addTest(7, 12, 180.0f);
+    super("test/data/blackbox/upca-4", new MultiFormatReader(), BarcodeFormat.UPC_A);
+    addTest(8, 13, 0.0f);
+    addTest(8, 12, 180.0f);
   }
 
 }