Skip to content

Commit 448c599

Browse files
committed
Adding one more basic user to pay-publicapi
1 parent 2c582f8 commit 448c599

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

jdk_11_maven/em/embedded/rest/pay-publicapi/src/main/java/em/embedded/uk/gov/pay/api/app/EmbeddedEvoMasterController.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@ public String getPackagePrefixesToCover() {
6969
public List<AuthenticationDto> getInfoForAuthentication() {
7070
AuthenticationDto dto = AuthUtils.getForAuthorizationHeader("foo", "Bearer asdfghdasdjlguuolnga94upq3nrd2642sq7uel0oo");
7171
dto.requireMockHandling = true;
72-
return Arrays.asList(dto);
72+
73+
AuthenticationDto dto2 = AuthUtils.getForBasic("basicDto", "User1", "Password123");
74+
75+
return Arrays.asList(dto, dto2);
7376
}
7477

7578
@Override

0 commit comments

Comments
 (0)