diff options
author | Valery Piashchynski <[email protected]> | 2022-08-22 12:21:48 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-08-22 12:21:48 +0200 |
commit | 5c6cb57cb5eb1dad83c907d6f94536dc626e64d5 (patch) | |
tree | 9be735c2222e35a21947c92a040449e486f39252 /lib/roadrunner_test.go | |
parent | 6a57268eafbc1407e4b242d0458a6df659c523d1 (diff) |
feat: interface{} -> any{}
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'lib/roadrunner_test.go')
-rw-r--r-- | lib/roadrunner_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/roadrunner_test.go b/lib/roadrunner_test.go index 9406b7bf..64655189 100644 --- a/lib/roadrunner_test.go +++ b/lib/roadrunner_test.go @@ -49,7 +49,7 @@ func TestNewWithConfig(t *testing.T) { func TestServeStop(t *testing.T) { cfgFile := makeConfig(t, testConfig) - plugins := []interface{}{ + plugins := []any{ &informer.Plugin{}, &resetter.Plugin{}, } |