From 01c2d5c65546eef840575f1aa2f8870934012928 Mon Sep 17 00:00:00 2001 From: banseok1216 Date: Tue, 3 Jun 2025 11:56:49 +0900 Subject: [PATCH] =?UTF-8?q?test:=20ai=20Controller=20=ED=85=8C=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../test/kotlin/org/chewing/v1/controller/AiControllerTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/test/kotlin/org/chewing/v1/controller/AiControllerTest.kt b/api/src/test/kotlin/org/chewing/v1/controller/AiControllerTest.kt index 60f91c76..57a38b71 100644 --- a/api/src/test/kotlin/org/chewing/v1/controller/AiControllerTest.kt +++ b/api/src/test/kotlin/org/chewing/v1/controller/AiControllerTest.kt @@ -59,7 +59,7 @@ class AiControllerTest : RestDocsTest() { given() .setupAuthenticatedJsonRequest() - .post("/ai/chat/room") + .post("/api/ai/chat/room") .then() .statusCode(HttpStatus.CREATED.value()) .apply { @@ -116,7 +116,7 @@ class AiControllerTest : RestDocsTest() { given() .setupAuthenticatedJsonRequest() .body(request) - .post("/ai/chat/clone") + .post("/api/ai/chat/clone") .then() .statusCode(HttpStatus.OK.value()) .body("status", equalTo(200))