diff --git a/src/test/kotlin/dev/usbharu/hideout/activitypub/interfaces/api/inbox/InboxControllerImplTest.kt b/src/test/kotlin/dev/usbharu/hideout/activitypub/interfaces/api/inbox/InboxControllerImplTest.kt index f2dc7d53..a91e5b7f 100644 --- a/src/test/kotlin/dev/usbharu/hideout/activitypub/interfaces/api/inbox/InboxControllerImplTest.kt +++ b/src/test/kotlin/dev/usbharu/hideout/activitypub/interfaces/api/inbox/InboxControllerImplTest.kt @@ -104,7 +104,7 @@ class InboxControllerImplTest { } @Test - fun `inbox GETリクエストには504を返す`() { + fun `inbox GETリクエストには405を返す`() { mockMvc.get("/inbox").andExpect { status { isMethodNotAllowed() } } } @@ -173,7 +173,7 @@ class InboxControllerImplTest { } @Test - fun `user-inbox GETリクエストには504を返す`() { + fun `user-inbox GETリクエストには405を返す`() { mockMvc.get("/users/hoge/inbox").andExpect { status { isMethodNotAllowed() } } } }