Skip to content
This repository was archived by the owner on Dec 27, 2024. It is now read-only.

Commit f4d696a

Browse files
dev/codeforces/test Исправил тест deleteTeam_successв TeamControllerIntegrationTest
1 parent d1e4eb5 commit f4d696a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/cf/cfteam/controllers/codeforces/TeamControllerIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ public void deleteTeam_success() {
260260
Team team = createTeam(group);
261261
team = teamRepository.save(team);
262262

263-
mockMvc.perform(delete(URI + "/" + group.getId())
263+
mockMvc.perform(delete(URI + "/" + team.getId())
264264
.header("Authorization", userBearerToken))
265265
.andExpectAll(
266266
status().isNoContent(),

0 commit comments

Comments
 (0)