Skip to content

Commit 63db747

Browse files
author
EpicFn
committed
fix : 반환 메세지 수정
1 parent e4d2012 commit 63db747

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/org/tuna/zoopzoop/backend/domain/dashboard/controller/ApiV1DashboardController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public ResponseEntity<RsData<Void>> updateGraph(
4242
.status(HttpStatus.OK)
4343
.body(new RsData<>(
4444
"200",
45-
"React-flow 데이터를 저장 했습니다.",
45+
"React-flow 데이터를 저장했습니다.",
4646
null
4747
));
4848
}

src/test/java/org/tuna/zoopzoop/backend/domain/dashboard/controller/DashboardControllerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ void updateGraph_Success() throws Exception {
152152
// Then: 수정 성공 응답 확인
153153
expectOk(
154154
updateResult,
155-
"React-flow 데이터를 저장 했습니다."
155+
"React-flow 데이터를 저장했습니다."
156156
);
157157

158158
// When: 데이터 재조회하여 검증

0 commit comments

Comments
 (0)