Skip to content

Commit

Permalink
Fixing compilation errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Oct 22, 2014
1 parent 34f619c commit 7bcd973
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -407,7 +407,7 @@ public boolean handle(PrismObject<ShadowType> shadow) {
OperationResult result = new OperationResult(this.getClass().getName() + ".testSearch");

// WHEN
cc.search(accountDefinition, new ObjectQuery(), handler, null, result);
cc.search(accountDefinition, new ObjectQuery(), handler, null, null, result);

// THEN
assertEquals("Unexpected number of search results", 1, searchResults.size());
Expand Down
Expand Up @@ -639,7 +639,7 @@ public boolean handle(PrismObject<ShadowType> object) {
OperationResult result = new OperationResult(this.getClass().getName() + ".testSearch");

// WHEN
cc.search(accountDefinition, new ObjectQuery(), handler, null, result);
cc.search(accountDefinition, new ObjectQuery(), handler, null, null, result);

// THEN

Expand Down

0 comments on commit 7bcd973

Please sign in to comment.