Skip to content

Commit

Permalink
Fixing som 389ds conntests
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed May 27, 2016
1 parent 6723e41 commit 46f9765
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -943,7 +943,7 @@ public void test290ModifyUserBarbossaRename() throws Exception {

String repoPrimaryIdentifier = ShadowUtil.getAttributeValue(repoShadow, getPrimaryIdentifierAttributeQName());
if ("dn".equals(getPrimaryIdentifierAttributeName())) {
assertEquals("Entry DN (primary identifier) was not updated in the shadow", toAccountDn(USER_CPTBARBOSSA_USERNAME), repoPrimaryIdentifier);
assertEquals("Entry DN (primary identifier) was not updated in the shadow", toAccountDn(USER_CPTBARBOSSA_USERNAME).toLowerCase(), repoPrimaryIdentifier);
} else {
assertEquals("Entry ID changed after rename", accountBarbossaEntryId, repoPrimaryIdentifier);
}
Expand Down Expand Up @@ -990,7 +990,7 @@ public void test292ModifyUserBarbossaRenameCapitalized() throws Exception {

String repoPrimaryIdentifier = ShadowUtil.getAttributeValue(repoShadow, getPrimaryIdentifierAttributeQName());
if ("dn".equals(getPrimaryIdentifierAttributeName())) {
assertEquals("Entry DN (primary identifier) was not updated in the shadow", toAccountDn(USER_CPTBARBOSSA_USERNAME), repoPrimaryIdentifier);
assertEquals("Entry DN (primary identifier) was not updated in the shadow", toAccountDn(USER_CPTBARBOSSA_USERNAME).toLowerCase(), repoPrimaryIdentifier);
} else {
assertEquals("Entry ID changed after rename", accountBarbossaEntryId, repoPrimaryIdentifier);
}
Expand Down

0 comments on commit 46f9765

Please sign in to comment.