diff --git a/cmd/server/tests/tags_filter_test.go b/cmd/server/tests/tags_filter_test.go index fef928e..784d5f1 100644 --- a/cmd/server/tests/tags_filter_test.go +++ b/cmd/server/tests/tags_filter_test.go @@ -114,7 +114,7 @@ func TestTagsFilter(t *testing.T) { err := json.Unmarshal(rec.Body.Bytes(), &response) require.NoError(t, err) - results := response["results"].([]map[string]interface{}) + results := response["results"].([]interface{}) assert.Greater(t, len(results), 0, "Should return 'Science Fiction' in autocomplete results") })