From b4590c3b7c962613e151603fe6ce4ba7aa0a7449 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=97=B6=E9=97=B4=E9=82=AE=E9=80=92=E5=91=98?= <78356082+barret-yzh@users.noreply.github.com> Date: Fri, 26 May 2023 14:20:14 +0800 Subject: [PATCH] Update ThreadFactoryBuilderTest --- .../java/cn/hippo4j/common/executor/ThreadFactoryBuilderTest | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/infra/common/src/test/java/cn/hippo4j/common/executor/ThreadFactoryBuilderTest b/infra/common/src/test/java/cn/hippo4j/common/executor/ThreadFactoryBuilderTest index c0f16d9e..8f31296b 100644 --- a/infra/common/src/test/java/cn/hippo4j/common/executor/ThreadFactoryBuilderTest +++ b/infra/common/src/test/java/cn/hippo4j/common/executor/ThreadFactoryBuilderTest @@ -1,4 +1,3 @@ -package cn.hippo4j.common.design.builder; /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with @@ -15,6 +14,8 @@ package cn.hippo4j.common.design.builder; * See the License for the specific language governing permissions and * limitations under the License. */ +package cn.hippo4j.common.design.builder; + import cn.hippo4j.common.design.builder.ThreadFactoryBuilder; import org.junit.Assert; import org.junit.Before; @@ -63,7 +64,6 @@ public class ThreadFactoryBuilderTest { public void testPriority() { Assert.assertEquals(Thread.MAX_PRIORITY, thread.getPriority()); } - } class TestUncaughtExceptionHandler implements UncaughtExceptionHandler { @@ -80,4 +80,3 @@ class TestUncaughtExceptionHandler implements UncaughtExceptionHandler { return exceptionCaught; } } -