Skip to content

Commit 8c4cb42

Browse files
committed
Fixed build
1 parent 7d4ee66 commit 8c4cb42

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

server/src/test/java/access/api/InvitationControllerTest.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ void accept() {
105105
.then()
106106
.statusCode(HttpStatus.CREATED.value());
107107

108-
stubForIdentityProviderByEntityId("http://mock-idp");
108+
super.stubForIdentityProviderByEntityId("http://mock-idp");
109+
super.stubForGetChangeRequests(getChangeRequests());
110+
109111
User user = given()
110112
.when()
111113
.filter(accessCookieFilter.cookieFilter())
@@ -135,8 +137,9 @@ void acceptWithInternalUser() {
135137
m.put("schac_home_organization", schacHomeOrganization);
136138
return m;
137139
});
138-
//Looku for identity provider by authenticating authority
139-
stubForIdentityProviderByEntityId(authenticatingAuthority);
140+
//Lookup for identity provider by authenticating authority
141+
super.stubForIdentityProviderByEntityId(authenticatingAuthority);
142+
super.stubForGetChangeRequests(getChangeRequests());
140143

141144
User user = given()
142145
.when()

0 commit comments

Comments
 (0)