Skip to content

Commit 1a56f3d

Browse files
committed
Fix failing tests due to changing store from yes/no to bool
1 parent ae207b0 commit 1a56f3d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Tests/Nest.Tests.Unit/Core/Map/DynamicTemplates/CompletelyGenericTemplate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"store_generic": {
66
"match": "*",
77
"mapping": {
8-
"store": "yes"
8+
"store": true
99
}
1010
}
1111
}

src/Tests/Nest.Tests.Unit/Core/Map/DynamicTemplates/MultiFieldWithGenericTypes.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
"fields": {
99
"{name}": {
1010
"type": "{dynamic_type}",
11-
"store": "no",
11+
"store": false,
1212
"index": "analyzed"
1313
},
1414
"org": {
1515
"type": "{dynamic_type}",
16-
"store": "yes",
16+
"store": true,
1717
"index": "not_analyzed"
1818
},
1919
"suggest": {

0 commit comments

Comments
 (0)