fix:the le0 method parameter is incorrect

le0方法参数原来为1,应该为0.
This commit is contained in:
harochen75
2023-09-01 10:14:07 +08:00
committed by GitHub
parent 8d034988f0
commit 0da7e89091
@@ -91,7 +91,7 @@ public abstract class AssertionUtils {
}
public static void le0(long x) {
le(x, 1);
le(x, 0);
}
public static void le1(long x) {