Skip to content

Commit 0b7319e

Browse files
committed
refactor/OPS-388 : 다건삭제 DELETE 테스트 케이스 수정
1 parent d2e10ab commit 0b7319e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/tuna/zoopzoop/backend/domain/space/archive/controller/SpaceArchiveDataSourceControllerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ void delete_many_ok() throws Exception {
190190
"dataSourceId", List.of(a.getId(), b.getId())
191191
));
192192

193-
mockMvc.perform(post("/api/v1/space/{spaceId}/archive/datasources/delete", spaceId)
193+
mockMvc.perform(delete("/api/v1/space/{spaceId}/archive/datasources/delete", spaceId)
194194
.contentType(MediaType.APPLICATION_JSON)
195195
.content(body))
196196
.andExpect(status().isOk())

0 commit comments

Comments
 (0)