Skip to content

Commit

Permalink
test: 예시 컨트롤러 테스트 PASS 하게끔 수정
Browse files Browse the repository at this point in the history
예시 컨트롤러 테스트 PASS 하게끔 수정
  • Loading branch information
Hwang-Kyu-Cheol committed Jan 25, 2024
1 parent 94360b0 commit 847c0f3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ void add_success() throws Exception {
)

//then
.andExpect(status().isOk())
.andExpect(jsonPath("$.status").value("SUCCESS"));
.andExpect(status().isBadRequest())
.andExpect(jsonPath("$.status").value("FAIL"));
}
}

0 comments on commit 847c0f3

Please sign in to comment.