Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
joelim-work committed Feb 18, 2025
1 parent 22f9cd8 commit aa34cf4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions complete_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ func TestGetLocalOptWords(t *testing.T) {
localOpts any
exp []string
}{
{struct{ features map[string]bool }{}, []string{"feature", "feature!", "nofeature"}},
{struct{ features map[string]int }{}, []string{"feature"}},
{struct{ features map[string]string }{}, []string{"feature"}},
{struct{ features map[string][]string }{}, []string{"feature"}},
{struct{ feature map[string]bool }{}, []string{"feature", "feature!", "nofeature"}},
{struct{ feature map[string]int }{}, []string{"feature"}},
{struct{ feature map[string]string }{}, []string{"feature"}},
{struct{ feature map[string][]string }{}, []string{"feature"}},
}

for _, test := range tests {
Expand Down

0 comments on commit aa34cf4

Please sign in to comment.