From 6c104d771e382f499025a35b10f39d997ce83b7d Mon Sep 17 00:00:00 2001 From: Gabriel Marin Date: Tue, 11 Mar 2025 07:24:54 +0200 Subject: Change 'interface{}' to 'any' (#4308) --- src/tui/tcell_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tui') diff --git a/src/tui/tcell_test.go b/src/tui/tcell_test.go index 63bcd8ce..8efd0ad8 100644 --- a/src/tui/tcell_test.go +++ b/src/tui/tcell_test.go @@ -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 { -- cgit v1.2.3