Small style stuff
[zxing.git] / core / test / src / com / google / zxing / oned / UPCABlackBox2TestCase.java
index 417fcbb..297680d 100644 (file)
 
 package com.google.zxing.oned;
 
-import com.google.zxing.MultiFormatReader;
 import com.google.zxing.BarcodeFormat;
+import com.google.zxing.MultiFormatReader;
 import com.google.zxing.common.AbstractBlackBoxTestCase;
 
-import java.io.File;
-
 /**
  * @author dswitkin@google.com (Daniel Switkin)
  */
 public final class UPCABlackBox2TestCase extends AbstractBlackBoxTestCase {
 
   public UPCABlackBox2TestCase() {
-    super(new File("test/data/blackbox/upca-2"), new MultiFormatReader(), BarcodeFormat.UPC_A);
-    addTest(25, 35, 0.0f);
-    addTest(25, 35, 180.0f);
+    super("test/data/blackbox/upca-2", new MultiFormatReader(), BarcodeFormat.UPC_A);
+    addTest(29, 35, 0.0f);
+    addTest(31, 35, 180.0f);
   }
 
 }