mirror of https://github.com/usbharu/Hideout.git
test: テスト名が間違っていたので修正
This commit is contained in:
parent
e90a28b06a
commit
32d25f0984
|
@ -104,7 +104,7 @@ class InboxControllerImplTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `inbox GETリクエストには504を返す`() {
|
fun `inbox GETリクエストには405を返す`() {
|
||||||
mockMvc.get("/inbox").andExpect { status { isMethodNotAllowed() } }
|
mockMvc.get("/inbox").andExpect { status { isMethodNotAllowed() } }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -173,7 +173,7 @@ class InboxControllerImplTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `user-inbox GETリクエストには504を返す`() {
|
fun `user-inbox GETリクエストには405を返す`() {
|
||||||
mockMvc.get("/users/hoge/inbox").andExpect { status { isMethodNotAllowed() } }
|
mockMvc.get("/users/hoge/inbox").andExpect { status { isMethodNotAllowed() } }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue