diff --git a/cmd/cgr-loader/cgr-loader_it_test.go b/cmd/cgr-loader/cgr-loader_it_test.go index 77944fd6c..95f258a05 100644 --- a/cmd/cgr-loader/cgr-loader_it_test.go +++ b/cmd/cgr-loader/cgr-loader_it_test.go @@ -112,6 +112,7 @@ func TestLoadConfig(t *testing.T) { SQLMaxIdleConns: 10, SSLMode: "disable", MySQLLocation: "Local", + SQLDSNParams: make(map[string]string), }, } // Loader diff --git a/config/config_it_test.go b/config/config_it_test.go index 2ad4d18b7..44b0b1672 100644 --- a/config/config_it_test.go +++ b/config/config_it_test.go @@ -310,6 +310,7 @@ func testCGRConfigReloadStatS(t *testing.T) { ProfileIDs: []*utils.DynamicStringSliceOpt{}, ProfileIgnoreFilters: []*utils.DynamicBoolOpt{}, RoundingDecimals: []*utils.DynamicIntOpt{}, + PrometheusStatIDs: []*utils.DynamicStringSliceOpt{}, }, } if !reflect.DeepEqual(expAttr, cfg.StatSCfg()) { @@ -383,6 +384,7 @@ func testCGRConfigReloadSupplierS(t *testing.T) { Limit: []*utils.DynamicIntPointerOpt{}, Offset: []*utils.DynamicIntPointerOpt{}, Usage: []*utils.DynamicDecimalBigOpt{}, + MaxItems: []*utils.DynamicIntPointerOpt{}, }, } if !reflect.DeepEqual(expAttr, cfg.RouteSCfg()) {