Skip to content

Commit

Permalink
Fixing provisioning tests
Browse files Browse the repository at this point in the history
  • Loading branch information
semancik committed Mar 12, 2016
1 parent c9961f3 commit 538514d
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -294,7 +294,7 @@ public void test030ResourceSchema() throws ObjectNotFoundException, SchemaExcept

// THEN
display("Generated resource schema", resourceSchema);
assertEquals("Unexpected number of definitions", 3, resourceSchema.getDefinitions().size());
assertEquals("Unexpected number of definitions", 4, resourceSchema.getDefinitions().size());

dummyResourceCtl.assertDummyResourceSchemaSanityExtended(resourceSchema, resourceType);

Expand All @@ -306,7 +306,7 @@ public void test030ResourceSchema() throws ObjectNotFoundException, SchemaExcept
ResourceSchema reparsedResourceSchema = ResourceSchema.parse(DOMUtil.getFirstChildElement(xsdSchemaDom),
"serialized schema", PrismTestUtil.getPrismContext());
display("Re-parsed resource schema", reparsedResourceSchema);
assertEquals("Unexpected number of definitions in re-parsed schema", 3, reparsedResourceSchema.getDefinitions().size());
assertEquals("Unexpected number of definitions in re-parsed schema", 4, reparsedResourceSchema.getDefinitions().size());

dummyResourceCtl.assertDummyResourceSchemaSanityExtended(reparsedResourceSchema, resourceType);
}
Expand Down

0 comments on commit 538514d

Please sign in to comment.