File tree 1 file changed +4
-6
lines changed
photon-core/src/test/java/org/photonvision/vision/pipeline
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 17
17
18
18
package org .photonvision .vision .pipeline ;
19
19
20
- import static org .junit .jupiter .api .Assertions .assertNotNull ;
21
- import static org .junit .jupiter .api .Assertions .assertTrue ;
22
-
23
20
import edu .wpi .first .math .util .Units ;
21
+
22
+ import static org .junit .jupiter .api .Assertions .*;
23
+
24
24
import java .io .File ;
25
25
import java .io .IOException ;
26
26
import java .nio .file .Path ;
@@ -280,9 +280,7 @@ public static void calibrateCommon(
280
280
System .out .println ("Dist Coeffs: " + cal .distCoeffs .toString ());
281
281
282
282
// Confirm we didn't get leaky on our mat usage
283
- // assertEquals(startMatCount, CVMat.getMatCount()); // TODO Figure out why this
284
- // doesn't
285
- // work in CI
283
+ assertEquals (startMatCount , CVMat .getMatCount ());
286
284
System .out .println ("CVMats left: " + CVMat .getMatCount () + " Start: " + startMatCount );
287
285
}
288
286
You can’t perform that action at this time.
0 commit comments