From e49a9a815385231dccee248fe45b9094478288d2 Mon Sep 17 00:00:00 2001 From: Choo Date: Thu, 25 Jul 2024 18:06:37 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20status=20=EB=8B=AC=EB=9D=BC=EC=84=9C=20?= =?UTF-8?q?=EC=8B=A4=ED=8C=A8=ED=95=98=EB=8A=94=20=ED=85=8C=EC=8A=A4?= =?UTF-8?q?=ED=8A=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/backend-ci-cd.yml | 2 +- .../chongdae/offering/integration/OfferingIntegrationTest.java | 2 +- .../integration/OfferingMemberIntegrationTest.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/backend-ci-cd.yml b/.github/workflows/backend-ci-cd.yml index 5e1a07b71..82725b042 100644 --- a/.github/workflows/backend-ci-cd.yml +++ b/.github/workflows/backend-ci-cd.yml @@ -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 diff --git a/backend/src/test/java/com/zzang/chongdae/offering/integration/OfferingIntegrationTest.java b/backend/src/test/java/com/zzang/chongdae/offering/integration/OfferingIntegrationTest.java index a96cbf728..4fc84a3cd 100644 --- a/backend/src/test/java/com/zzang/chongdae/offering/integration/OfferingIntegrationTest.java +++ b/backend/src/test/java/com/zzang/chongdae/offering/integration/OfferingIntegrationTest.java @@ -21,7 +21,7 @@ public class OfferingIntegrationTest extends IntegrationTest { - @DisplayName("공모 상세 조회 ") + @DisplayName("공모 상세 조회") @Nested class GetOfferingDetail { diff --git a/backend/src/test/java/com/zzang/chongdae/offeringmember/integration/OfferingMemberIntegrationTest.java b/backend/src/test/java/com/zzang/chongdae/offeringmember/integration/OfferingMemberIntegrationTest.java index 83daedaa0..0926fae5b 100644 --- a/backend/src/test/java/com/zzang/chongdae/offeringmember/integration/OfferingMemberIntegrationTest.java +++ b/backend/src/test/java/com/zzang/chongdae/offeringmember/integration/OfferingMemberIntegrationTest.java @@ -78,7 +78,7 @@ void should_throwException_when_givenProposerParticipate() { .body(request) .when().post("/participations") .then().log().all() - .statusCode(500); + .statusCode(400); } } }