Skip to content

Commit

Permalink
Updating RDN field identifier for LdapRealmTest#*create
Browse files Browse the repository at this point in the history
  • Loading branch information
OndrejKotek committed Oct 24, 2024
1 parent b2abf40 commit dac2fdf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public void create() throws Exception {
crud.create(ldapRealmAddress(LDAP_RLM_CREATE), table, f -> {
f.text(NAME, LDAP_RLM_CREATE);
f.text(DIR_CONTEXT, DIR_UPDATE);
f.text(RDN_IDENTIFIER, ANY_STRING);
f.text(IDENTITY_MAPPING + RDN_IDENTIFIER, ANY_STRING);
});
}

Expand All @@ -187,7 +187,7 @@ public void tryCreate() throws Exception {
TableFragment table = page.getLdapRealmTable();
crud.createWithErrorAndCancelDialog(table, f -> {
f.text(NAME, LDAP_RLM_CREATE);
f.text(RDN_IDENTIFIER, ANY_STRING);
f.text(IDENTITY_MAPPING + RDN_IDENTIFIER, ANY_STRING);
}, DIR_CONTEXT);
}

Expand Down

0 comments on commit dac2fdf

Please sign in to comment.