diff options
author | sblimkie <steven.blimkie@amdocs.com> | 2018-02-20 16:22:24 -0500 |
---|---|---|
committer | sblimkie <steven.blimkie@amdocs.com> | 2018-02-20 16:23:53 -0500 |
commit | 91ca7d73d42445945a0078f93635fd2fb6c10503 (patch) | |
tree | 0df6a3d0c9ddfe107a690744502bfa59cf95206e /src | |
parent | 620debc0558babef78fbd71fcafab4559abc57d3 (diff) |
Gizmo to use latest schema
Update Gizmo to use the latest version of the aai-schema and
aai relationships
Change-Id: I2a8b408b2e55f1bd13ee8800a0d78bdf2c59ecb8
Issue-ID: AAI-482
Signed-off-by: sblimkie <steven.blimkie@amdocs.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/test/java/org/onap/schema/RelationshipSchemaLoaderTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/org/onap/schema/RelationshipSchemaLoaderTest.java b/src/test/java/org/onap/schema/RelationshipSchemaLoaderTest.java index a2b9956..4dc25d8 100644 --- a/src/test/java/org/onap/schema/RelationshipSchemaLoaderTest.java +++ b/src/test/java/org/onap/schema/RelationshipSchemaLoaderTest.java @@ -41,7 +41,7 @@ public class RelationshipSchemaLoaderTest { RelationshipSchemaLoader.loadModels("v11"); String version = RelationshipSchemaLoader.getLatestSchemaVersion(); RelationshipSchema g = RelationshipSchemaLoader.getSchemaForVersion(version); - assertNotNull(g.lookupRelationType("isMemberOf")); + assertNotNull(g.lookupRelationType("org.onap.relationships.inventory.BelongsTo")); } @Test @@ -88,4 +88,4 @@ public class RelationshipSchemaLoaderTest { RelationshipSchemaLoader.setVersionContextMap(versionMap); assertNotNull(RelationshipSchemaLoader.getSchemaForVersion("v1").lookupRelationType("groupsResourcesIn")); } -}
\ No newline at end of file +} |