Skip to content

Commit

Permalink
fixing compilation failures (repo tests)
Browse files Browse the repository at this point in the history
  • Loading branch information
katkav committed Jul 24, 2014
1 parent 5e72d37 commit e9c9589
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -44,7 +44,7 @@ public void searchNonExistingShadowOwner() throws Exception {
//searching owner for non existing shadow
OperationResult result = new OperationResult("List owner");
try {
repositoryService.searchShadowOwner("12345", result);
repositoryService.searchShadowOwner("12345", null, result);
} finally {
result.computeStatus();
AssertJUnit.assertTrue("current status" + result.getStatus(), result.isFatalError());
Expand Down Expand Up @@ -74,7 +74,7 @@ public void searchShadowOwner() throws Exception {
OperationResult result = new OperationResult("List owner");

//look for account owner
PrismObject<UserType> user = repositoryService.searchShadowOwner("11223344", result);
PrismObject<UserType> user = repositoryService.searchShadowOwner("11223344", null, result);

assertNotNull("No owner for account", user);
PrismProperty name = user.findProperty(ObjectType.F_NAME);
Expand All @@ -87,7 +87,7 @@ public void searchShadowOwnerIsRole() throws Exception {
OperationResult result = new OperationResult("List owner");

//look for account owner
PrismObject<RoleType> role = repositoryService.searchShadowOwner("11223355", result);
PrismObject<RoleType> role = repositoryService.searchShadowOwner("11223355", null, result);

assertNotNull("No owner for account", role);
PrismProperty name = role.findProperty(ObjectType.F_NAME);
Expand Down

0 comments on commit e9c9589

Please sign in to comment.