File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
scijava-ops-flim/src/test/java/org/scijava/ops/flim Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3333import flimlib .NoiseType ;
3434import flimlib .RestrainType ;
3535import net .imglib2 .type .numeric .real .FloatType ;
36- import org .junit .Test ;
37- import org .scijava .ops .flim .FitParams ;
36+ import org .junit .jupiter .api .Test ;
3837
3938import java .util .Random ;
4039
41- import static org .junit .Assert .assertArrayEquals ;
42- import static org .junit .Assert .assertEquals ;
40+ import static org .junit .jupiter .api .Assertions .assertArrayEquals ;
41+ import static org .junit .jupiter .api .Assertions .assertEquals ;
42+ import static org .junit .jupiter .api .Assertions .assertNull ;
4343
4444/**
4545 * Regression tests for miscellaneous components.
@@ -89,7 +89,7 @@ public void testParamSerialization() {
8989
9090 final FitParams <FloatType > actual = FitParams .fromJSON (expected .toJSON ());
9191 assertEquals (expected .xInc , actual .xInc , TOLERANCE );
92- assertEquals ( null , actual .trans );
92+ assertNull ( actual .trans );
9393 assertEquals (expected .ltAxis , actual .ltAxis );
9494 assertEquals (expected .fitStart , actual .fitStart );
9595 assertEquals (expected .fitEnd , actual .fitEnd );
You can’t perform that action at this time.
0 commit comments