Skip to content

Commit

Permalink
Adapt failed model-intest tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Jul 25, 2018
1 parent 70a9b90 commit 5119f20
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -343,7 +343,7 @@ private void evaluateFromSegment(AssignmentPathSegmentImpl segment, PlusMinusZer
ctx.evalAssignment.setVirtual(isVirtual);
}

LOGGER.info("evalAssignment isVirtual {} ", ctx.evalAssignment.isVirtual());
LOGGER.trace("evalAssignment isVirtual {} ", ctx.evalAssignment.isVirtual());
}

private <R extends AbstractRoleType> boolean isForcedAssignment(AssignmentPathSegmentImpl segment, EvaluationContext ctx) {
Expand Down
Expand Up @@ -287,8 +287,8 @@ public void test320DefaultRelations() throws Exception {
// THEN
displayThen(TEST_NAME);
display("Relations", relations);
assertRelationDef(relations, SchemaConstants.ORG_MANAGER, "RelationTypes.Manager");
assertRelationDef(relations, SchemaConstants.ORG_OWNER, "RelationTypes.Owner");
assertRelationDef(relations, SchemaConstants.ORG_MANAGER, "RelationTypes.manager");
assertRelationDef(relations, SchemaConstants.ORG_OWNER, "RelationTypes.owner");
assertEquals("Unexpected number of relation definitions", 7, relations.size());
}

Expand Down
Expand Up @@ -1402,7 +1402,7 @@ public void test310CustomRelations() throws Exception {
// THEN
displayThen(TEST_NAME);
display("Relations", relations);
assertRelationDef(relations, SchemaConstants.ORG_MANAGER, "RelationTypes.Manager");
assertRelationDef(relations, SchemaConstants.ORG_MANAGER, "RelationTypes.manager");
assertRelationDef(relations, SchemaConstants.ORG_OWNER, "Master");
assertRelationDef(relations, RELATION_PIRACY_CAPTAIN, "Captain");
assertEquals("Unexpected number of relation definitions", 8, relations.size());
Expand Down

0 comments on commit 5119f20

Please sign in to comment.