diff options
| author | Gabriel Marin <gbrlmarn@gmail.com> | 2025-03-11 07:24:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-11 14:24:54 +0900 |
| commit | 6c104d771e382f499025a35b10f39d997ce83b7d (patch) | |
| tree | e3ea07ad6f1980d393d0775607bd1195b503b0d4 /src/tui | |
| parent | aefb9a5bc41f92227e4bffa050caca0270b450ba (diff) | |
| download | fzf-6c104d771e382f499025a35b10f39d997ce83b7d.tar.gz | |
Change 'interface{}' to 'any' (#4308)
Diffstat (limited to 'src/tui')
| -rw-r--r-- | src/tui/tcell_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |
