Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oharsta committed Dec 6, 2023
1 parent 4520281 commit 61e07d4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions server/src/test/java/access/teams/TeamsControllerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ void migrateTeam() throws JsonProcessingException {
"nl:surfnet:diensten:test",
"test migration",
"test migration",
"https://landingpage.com",
memberships,
applications
);
Expand Down Expand Up @@ -98,7 +97,6 @@ void migrateTeamInvalidApplications() {
"nl:surfnet:diensten:test",
"test migration",
"test migration",
"https://landingpage.com",
memberships,
applications
);
Expand All @@ -111,6 +109,6 @@ void migrateTeamInvalidApplications() {
.body(team)
.post("/api/teams")
.then()
.statusCode(404);
.statusCode(400);
}
}

0 comments on commit 61e07d4

Please sign in to comment.