mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix test
This commit is contained in:
@@ -154,7 +154,7 @@ public class AssertTest {
|
|||||||
public void checkBetweenTest2() {
|
public void checkBetweenTest2() {
|
||||||
final double a = 12;
|
final double a = 12;
|
||||||
final double i = Assert.checkBetween(a, 1, 12);
|
final double i = Assert.checkBetween(a, 1, 12);
|
||||||
org.junit.Assert.assertSame(a, i);
|
org.junit.Assert.assertEquals(a, i, 0.00);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
Reference in New Issue
Block a user