Skip to content

Commit

Permalink
Fix broken test after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
nonword committed Oct 18, 2024
1 parent 2173ce7 commit f29693c
Show file tree
Hide file tree
Showing 61 changed files with 2 additions and 402,518 deletions.
4 changes: 2 additions & 2 deletions test/elasticsearch-utils.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ describe('ES utils', () => {
expect(esUtils.phraseMatch('prop', 'val', 101)).to.nested
.include({ 'match_phrase.prop.query': 'val' })
.include({ 'match_phrase.prop.boost': 101 })
// Default boost of 1:
// Default boost of 0:
expect(esUtils.phraseMatch('prop', 'val')).to.nested
.include({ 'match_phrase.prop.query': 'val' })
.include({ 'match_phrase.prop.boost': 1 })
.include({ 'match_phrase.prop.boost': 0 })
})
})
})
Loading

0 comments on commit f29693c

Please sign in to comment.