From f530a065f801f97bb351c509c5f5ce258b01e788 Mon Sep 17 00:00:00 2001 From: kang-hyungu Date: Mon, 11 Sep 2023 17:09:04 +0900 Subject: [PATCH] =?UTF-8?q?=EC=84=9C=EB=B8=94=EB=A6=BF=20=ED=95=99?= =?UTF-8?q?=EC=8A=B5=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- study/src/test/java/servlet/com/example/FilterTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/study/src/test/java/servlet/com/example/FilterTest.java b/study/src/test/java/servlet/com/example/FilterTest.java index 238b620b59..53d6236dff 100644 --- a/study/src/test/java/servlet/com/example/FilterTest.java +++ b/study/src/test/java/servlet/com/example/FilterTest.java @@ -1,6 +1,5 @@ package servlet.com.example; -import java.net.http.HttpResponse; import org.junit.jupiter.api.Test; import support.HttpUtils; @@ -15,7 +14,7 @@ void testFilter() { final var tomcatStarter = new TomcatStarter("src/main/webapp/"); tomcatStarter.start(); - HttpResponse response = HttpUtils.send("/korean"); + final var response = HttpUtils.send("/korean"); // 톰캣 서버 종료 tomcatStarter.stop();