Skip to content

Commit

Permalink
fixing final test
Browse files Browse the repository at this point in the history
  • Loading branch information
jjoyce0510 committed Aug 8, 2022
1 parent 71ddba9 commit 912b0b5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ public void testMappingsBuilder() {
Map<String, Object> result = MappingsBuilder.getMappings(TestEntitySpecBuilder.getSpec());
assertEquals(result.size(), 1);
Map<String, Object> properties = (Map<String, Object>) result.get("properties");
assertEquals(properties.size(), 14);
assertEquals(properties.size(), 15);
assertEquals(properties.get("urn"), ImmutableMap.of("type", "keyword"));
assertEquals(properties.get("runId"), ImmutableMap.of("type", "keyword"));
assertTrue(properties.containsKey("browsePaths"));
// KEYWORD
Map<String, Object> keyPart3Field = (Map<String, Object>) properties.get("keyPart3");
Expand Down

0 comments on commit 912b0b5

Please sign in to comment.