Skip to content

Commit

Permalink
Merge pull request #225 from xenit-eu/renovate/com.github.dasniko-tes…
Browse files Browse the repository at this point in the history
…tcontainers-keycloak-3.x

Update dependency com.github.dasniko:testcontainers-keycloak to v3.4.0
  • Loading branch information
vierbergenlars authored Aug 20, 2024
2 parents d272ccd + 2b4029a commit 682aee2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ dependencies {

testImplementation 'org.testcontainers:testcontainers'
testImplementation 'org.testcontainers:junit-jupiter'
testImplementation 'com.github.dasniko:testcontainers-keycloak:3.2.0'
testImplementation 'com.github.dasniko:testcontainers-keycloak:3.4.0'

testImplementation 'org.testcontainers:k3s'
testImplementation 'org.awaitility:awaitility'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,9 @@ static UserCredentials createUser(Realm realm, String username) {

var userRepresentation = new UserRepresentation();
userRepresentation.setUsername(username);
userRepresentation.setEmail(username+"@example.invalid");
userRepresentation.setFirstName("Test");
userRepresentation.setLastName("Dummy");
userRepresentation.setEnabled(true);

String userId;
Expand Down

0 comments on commit 682aee2

Please # to comment.