diff --git a/threadpool/server/common/src/test/java/cn/hippo4j/server/common/base/ServiceExceptionTest.java b/threadpool/server/common/src/test/java/cn/hippo4j/server/common/base/ServiceExceptionTest.java index 23acf4a3..fc55129b 100644 --- a/threadpool/server/common/src/test/java/cn/hippo4j/server/common/base/ServiceExceptionTest.java +++ b/threadpool/server/common/src/test/java/cn/hippo4j/server/common/base/ServiceExceptionTest.java @@ -24,12 +24,10 @@ import cn.hippo4j.server.common.base.exception.ServiceException; import com.fasterxml.jackson.annotation.JsonTypeInfo; import org.checkerframework.checker.units.qual.A; import org.junit.jupiter.api.Test; - import java.util.Objects; /** * Service exception test - * */ public class ServiceExceptionTest { @@ -99,13 +97,4 @@ public class ServiceExceptionTest { Assert.isTrue(Objects.equals(serviceException.getErrorCode().getCode(), ErrorCodeEnum.LOGIN_TIMEOUT.getCode())); Assert.isTrue(Objects.equals(serviceException.getMessage(), message)); } - - - - - - - - - }