mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
Replace interface{} with any
This commit is contained in:
committed by
Dan Christian Bogos
parent
97c3dab0f4
commit
6c16ff320f
@@ -1363,14 +1363,14 @@ func TestLoadDispatcherProfiles(t *testing.T) {
|
||||
ID: "C1",
|
||||
FilterIDs: []string{"*gt:~*req.Usage:10"},
|
||||
Weight: 10,
|
||||
Params: []interface{}{"192.168.56.203"},
|
||||
Params: []any{"192.168.56.203"},
|
||||
Blocker: false,
|
||||
},
|
||||
{
|
||||
ID: "C2",
|
||||
FilterIDs: []string{"*lt:~*req.Usage:10"},
|
||||
Weight: 10,
|
||||
Params: []interface{}{"192.168.56.204"},
|
||||
Params: []any{"192.168.56.204"},
|
||||
Blocker: false,
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user