refactor: lateinit 필드 지정으로 인한 불필요한 !! 연산자 제거

This commit is contained in:
이상진 2025-07-07 01:46:41 +09:00
parent 8bb2879a40
commit 74ebf9b841

View File

@ -76,7 +76,7 @@ class DemoControllerTest {
}
}
private fun run(endpoint: String, body: String, expectedStatus: Int): ResultActions = mockMvc!!
private fun run(endpoint: String, body: String, expectedStatus: Int): ResultActions = mockMvc
.perform(
post(endpoint)
.contentType(MediaType.APPLICATION_JSON_VALUE)