Skip to content

Commit

Permalink
fix: status 달라서 실패하는 테스트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ChooSeoyeon committed Jul 25, 2024
1 parent 935e4ae commit e49a9a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
# uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5

- name: Build with Gradle Wrapper
run: ./gradlew clean build --warning-mode all
run: ./gradlew clean build
working-directory: ./backend

- name: Docker build and push
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

public class OfferingIntegrationTest extends IntegrationTest {

@DisplayName("공모 상세 조회 ")
@DisplayName("공모 상세 조회")
@Nested
class GetOfferingDetail {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ void should_throwException_when_givenProposerParticipate() {
.body(request)
.when().post("/participations")
.then().log().all()
.statusCode(500);
.statusCode(400);
}
}
}

0 comments on commit e49a9a8

Please sign in to comment.