Skip to content

Commit

Permalink
[TEST] fix failing DocumentParserTests tests
Browse files Browse the repository at this point in the history
  • Loading branch information
javanna committed Dec 8, 2020
1 parent 2a5da4c commit f0a55bb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public void testRuntimeFieldAndArrayChildren() throws IOException {
b.field("dynamic", "true");
b.startObject("runtime");
{
b.startObject("object").field("type", "test").endObject();
b.startObject("object").field("type", "string").endObject();
}
b.endObject();
}));
Expand Down Expand Up @@ -186,8 +186,8 @@ public void testRuntimeFieldDoesNotShadowObjectChildren() throws IOException {
b.field("dynamic", "true");
b.startObject("runtime");
{
b.startObject("location").field("type", "test").endObject();
b.startObject("country").field("type", "test").endObject();
b.startObject("location").field("type", "string").endObject();
b.startObject("country").field("type", "string").endObject();
}
b.endObject();
b.startObject("properties");
Expand Down

0 comments on commit f0a55bb

Please sign in to comment.