m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 07:43:39 -05:00

Change 'interface{}' to 'any' (#4308)

This commit is contained in:
Gabriel Marin
2025-03-11 07:24:54 +02:00
committed by GitHub
parent aefb9a5bc4
commit 6c104d771e
3 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ import (
"github.com/junegunn/fzf/src/util"
)
func assert(t *testing.T, context string, got interface{}, want interface{}) bool {
func assert(t *testing.T, context string, got any, want any) bool {
if got == want {
return true
} else {