Skip to content

Commit

Permalink
#511 [fix] 테스트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
sohyundoh committed Sep 9, 2024
1 parent 898812c commit 1bb7042
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class MoimControllerTest {
private static final String AUTHORIZATION = "Authorization";
private static final int OK = 200;
private static final int CREATED = 201;
private static final int BAD_REQUEST = 400;
private static final int NOT_FOUND = 404;
private static Long USER_ID;
private static String MOIM_ID;
private static String randomString;
Expand Down Expand Up @@ -132,7 +132,7 @@ public void parameterErrorTest() throws Exception {
).andDo(print()).andReturn();

//then
assertThat(result.getResponse().getStatus()).isEqualTo(BAD_REQUEST);
assertThat(result.getResponse().getStatus()).isEqualTo(NOT_FOUND);

}

Expand Down

0 comments on commit 1bb7042

Please sign in to comment.