From 2c1ce14c76d5c7be6a8e664415a4f566d4c3617d Mon Sep 17 00:00:00 2001 From: Dae-Hwa Date: Fri, 3 Sep 2021 18:07:54 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20FileForTest=EC=9D=98=20=EC=9E=98?= =?UTF-8?q?=EB=AA=BB=EB=90=9C=20File=20=EA=B2=BD=EB=A1=9C=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit FORM_HTML이 index.html 가리키고 있는 부분 수정 --- src/test/java/webserver/FileForTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/webserver/FileForTest.java b/src/test/java/webserver/FileForTest.java index 05ad5d8..2009de5 100644 --- a/src/test/java/webserver/FileForTest.java +++ b/src/test/java/webserver/FileForTest.java @@ -4,5 +4,5 @@ public class FileForTest { public static final File INDEX_HTML = new File("./webapp/index.html"); - public static final File FORM_HTML = new File("./webapp/index.html"); + public static final File FORM_HTML = new File("./webapp/user/form.html"); }