Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions redisearch/spellcheck_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ func TestNewMisspelledTerm(t *testing.T) {
args args
want MisspelledTerm
}{
// TODO: Add test cases.
{"1", args{"term"}, MisspelledTerm{"term", []MisspelledSuggestion{}}},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
Expand Down Expand Up @@ -333,7 +333,6 @@ func TestSpellCheckOptions_serialize(t *testing.T) {
fields fields
want redis.Args
}{
// TODO: Add test cases.
{"empty", fields{1, []string{}, []string{}}, redis.Args{}},
{"exclude", fields{1, []string{"dict1"}, []string{}}, redis.Args{"TERMS", "EXCLUDE", "dict1"}},
{"include", fields{1, []string{}, []string{"dict1"}}, redis.Args{"TERMS", "INCLUDE", "dict1"}},
Expand Down