0
0
Fork 0

fix error message typo

This commit is contained in:
Marty Schoch 2014-11-24 17:14:44 -05:00
parent 69d69e4516
commit 3c886276ed
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import (
// reproduces https://github.com/blevesearch/bleve/issues/126
func TestMultiSearchAllError(t *testing.T) {
ei1 := &errIndex{err: fmt.Errorf("deliberate error")}
ei2 := &errIndex{err: fmt.Errorf("deliberate errro")}
ei2 := &errIndex{err: fmt.Errorf("deliberate error")}
sr := NewSearchRequest(NewTermQuery("test"))
_, err := MultiSearch(sr, ei1, ei2)
if err == nil {