Browse Source

feat: Merge pull request #846 from pelias/remove-unused-reverse-test

Remove unused reverse fixture
pull/437/merge
Julian Simioni 8 years ago committed by GitHub
parent
commit
516454d2a5
  1. 43
      test/unit/fixture/reverse_boundary_circle.js

43
test/unit/fixture/reverse_boundary_circle.js

@ -1,43 +0,0 @@
var vs = require('../../../query/reverse_defaults');
module.exports = {
'query': {
'filtered': {
'query': {
'bool': {}
},
'filter': {
'bool': {
'must': [
{
'geo_distance': {
'distance': vs.distance,
'distance_type': 'plane',
'optimize_bbox': 'indexed',
'center_point': {
'lat': 29.49136,
'lon': -82.50622
}
}
}
]
}
}
}
},
'sort': [
'_score',
{
'_geo_distance': {
'center_point': {
'lat': 29.49136,
'lon': -82.50622
},
'order': 'asc',
'distance_type': 'plane'
}
}
],
'size': vs.size,
'track_scores': true
};
Loading…
Cancel
Save