Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Evolveum/midpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Mar 17, 2015
2 parents c965ab0 + 3f28841 commit d2d7f8a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Expand Up @@ -585,8 +585,11 @@ public void test168LookupLanguagesDeleteRowByKey() throws Exception {

assertSteadyResources();
}

@Test

/**
* todo probably enable this test, implementation in repository is not available yet.
*/
@Test(enabled = false)
public void test170LookupLanguagesReplaceRows() throws Exception {
final String TEST_NAME="test170LookupLanguagesReplaceRows";
TestUtil.displayTestTile(this, TEST_NAME);
Expand Down
Expand Up @@ -159,6 +159,9 @@ private void addGetCompare(File file) throws Exception {
if (UserType.class.equals(clazz)) {
o = SelectorOptions.createCollection(UserType.F_JPEG_PHOTO,
GetOperationOptions.createRetrieve(RetrieveOption.INCLUDE));
} else if (LookupTableType.class.equals(clazz)) {
o = SelectorOptions.createCollection(LookupTableType.F_TABLE,
GetOperationOptions.createRetrieve(RetrieveOption.INCLUDE));
}
PrismObject<? extends ObjectType> newObject = repositoryService.getObject(clazz, oids.get(i), o, result);
LOGGER.info("Old\n{}\nnew\n{}", new Object[]{object.debugDump(3), newObject.debugDump(3)});
Expand Down

0 comments on commit d2d7f8a

Please sign in to comment.