diff options
author | René 'Necoro' Neumann <necoro@necoro.eu> | 2022-04-24 18:53:32 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.eu> | 2022-04-24 18:53:32 +0200 |
commit | 79d3c2bfd95c5cb0ac6e4a3f97156161d792c676 (patch) | |
tree | cbfd034a362666b8dab842d3afed18cf95124ede /internal/feed/template/funcs_test.go | |
parent | 7822c9d443458ae9d1d9d678e279bfc516da7a8f (diff) | |
download | feed2imap-go-79d3c2bfd95c5cb0ac6e4a3f97156161d792c676.tar.gz feed2imap-go-79d3c2bfd95c5cb0ac6e4a3f97156161d792c676.tar.bz2 feed2imap-go-79d3c2bfd95c5cb0ac6e4a3f97156161d792c676.zip |
Replace `interface{}` by `any`
Diffstat (limited to 'internal/feed/template/funcs_test.go')
-rw-r--r-- | internal/feed/template/funcs_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/feed/template/funcs_test.go b/internal/feed/template/funcs_test.go index c75d27d..a5c25c3 100644 --- a/internal/feed/template/funcs_test.go +++ b/internal/feed/template/funcs_test.go @@ -31,8 +31,8 @@ func TestByteCount(t *testing.T) { } func TestDict(t *testing.T) { - type i []interface{} - type o map[string]interface{} + type i []any + type o map[string]any tests := map[string]struct { inp i |