Skip to content

Commit

Permalink
HSEARCH-4253 Fix invalid expectations in ElasticsearchIndexSchemaMana…
Browse files Browse the repository at this point in the history
…gerCreationCustomMappingIT

Properties that are on the Hibernate Search side only must follow
Hibernate Search's expectations.
  • Loading branch information
yrodiere authored and fax4ever committed Oct 14, 2021
1 parent 33dbafb commit 33794df
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,14 @@ public void noOverlapping() {
" 'doc_values':false " +
" }, " +
" 'bothObject':{ " +
" 'dynamic':'strict', " +
" 'properties':{ " +
" 'bothNested':{ " +
" 'type':'keyword', " +
" 'doc_values':false " +
" }, " +
" 'bothNestedObject':{ " +
" 'dynamic':'strict', " +
" 'properties':{ " +
" 'bothNestedNested':{ " +
" 'type':'keyword', " +
Expand All @@ -93,7 +95,8 @@ public void noOverlapping() {
" 'doc_values':false " +
" }, " +
" 'searchNestedObject':{ " +
" 'type':'object' " +
" 'type':'object', " +
" 'dynamic':'strict' " +
" } " +
" } " +
" }, " +
Expand All @@ -102,7 +105,8 @@ public void noOverlapping() {
" 'doc_values':false " +
" }, " +
" 'searchObject':{ " +
" 'type':'object' " +
" 'type':'object', " +
" 'dynamic':'strict' " +
" }, " +
" 'userField':{ " +
" 'type':'keyword', " +
Expand Down

0 comments on commit 33794df

Please sign in to comment.