test: テスト名が間違っていたので修正

This commit is contained in:
usbharu 2023-11-05 14:51:16 +09:00
parent 5bf7a1a25c
commit 22475bfed0
1 changed files with 2 additions and 2 deletions

View File

@ -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() } }
}
}