Skip to content

Commit

Permalink
fix: add tmp exception handler
Browse files Browse the repository at this point in the history
  • Loading branch information
aiaiaiai1 committed Jun 3, 2024
1 parent 0cefe2f commit 18f2119
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/java/gymmi/integration/DuplicationCheckTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ public class DuplicationCheckTest extends IntegrationTest {
.when().get("/check-duplication");

// when
response.then()
.statusCode(404)
response.then().log().all()
// .statusCode(404)
.statusCode(600)
.body(JSON_KEY_MESSAGE, Matchers.equalTo("해당 type은 존재하지 않는 type 입니다."));
}

Expand Down

0 comments on commit 18f2119

Please sign in to comment.