updated test order (#238)

This commit is contained in:
Graham Steffaniak 2024-11-20 19:28:01 -05:00 committed by GitHub
parent a5548bb776
commit 1ef28e1a1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -216,7 +216,7 @@ func TestSearchIndexes(t *testing.T) {
for _, tt := range tests { for _, tt := range tests {
t.Run(tt.search, func(t *testing.T) { t.Run(tt.search, func(t *testing.T) {
result := index.Search(tt.search, tt.scope, "") result := index.Search(tt.search, tt.scope, "")
assert.Equal(t, tt.expectedResult, result) assert.ElementsMatch(t, tt.expectedResult, result)
}) })
} }
} }