summaryrefslogtreecommitdiff
path: root/lib/roadrunner_test.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2022-08-22 12:21:48 +0200
committerValery Piashchynski <[email protected]>2022-08-22 12:21:48 +0200
commit5c6cb57cb5eb1dad83c907d6f94536dc626e64d5 (patch)
tree9be735c2222e35a21947c92a040449e486f39252 /lib/roadrunner_test.go
parent6a57268eafbc1407e4b242d0458a6df659c523d1 (diff)
feat: interface{} -> any{}
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'lib/roadrunner_test.go')
-rw-r--r--lib/roadrunner_test.go2
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{},
}