Browse Source

fixing tests

pull/68/head
Harish Krishna 10 years ago
parent
commit
9013b4484e
  1. 52
      test/unit/query/search.js

52
test/unit/query/search.js

@ -61,12 +61,13 @@ module.exports.tests.query = function(test, common) {
'query': {
'filtered': {
'query': {
'query_string': {
'query': 'test',
'fields': [
'name.default'
],
'default_operator': 'OR'
'bool': {
'must': [{
'match': {
'name.default': 'test'
}
}
]
}
},
'filter': {
@ -113,12 +114,13 @@ module.exports.tests.query = function(test, common) {
'query': {
'filtered': {
'query': {
'query_string': {
'query': 'test',
'fields': [
'name.default'
],
'default_operator': 'OR'
'bool': {
'must': [{
'match': {
'name.default': 'test'
}
}
]
}
},
'filter': {
@ -159,12 +161,13 @@ module.exports.tests.query = function(test, common) {
'query': {
'filtered': {
'query': {
'query_string': {
'query': 'test',
'fields': [
'name.default'
],
'default_operator': 'OR'
'bool': {
'must': [{
'match': {
'name.default': 'test'
}
}
]
}
},
'filter': {
@ -194,12 +197,13 @@ module.exports.tests.query = function(test, common) {
'query': {
'filtered': {
'query': {
'query_string': {
'query': 'test',
'fields': [
'name.default'
],
'default_operator': 'OR'
'bool': {
'must': [{
'match': {
'name.default': 'test'
}
}
]
}
},
'filter': {

Loading…
Cancel
Save