diff --git a/integrationTest/integration_test.go b/integrationTest/integration_test.go index 3ae4c5628..791fd7c9f 100644 --- a/integrationTest/integration_test.go +++ b/integrationTest/integration_test.go @@ -2322,15 +2322,15 @@ func makeTests() []*TestGroup { testgroup("GCORE metadata tests", only("GCORE"), tc("Add record with metadata", withMeta(a("@", "1.2.3.4"), map[string]string{ - "gcore_filters": "geodistance,false;first_n,false,2", - "gcore_asn": "1234,2345", - "gcore_continents": "as,na,an,sa,oc,eu,af", - "gcore_countries": "cn,us", - "gcore_latitude": "12.34", - "gcore_longitude": "67.89", - "gcore_notes": "test", - "gcore_weight": "12", - "gcore_ip": "1.2.3.4", + "gcore_filters": "geodistance,false;first_n,false,2", + "gcore_asn": "1234,2345", + "gcore_continents": "as,na,an,sa,oc,eu,af", + "gcore_countries": "cn,us", + "gcore_latitude": "12.34", + "gcore_longitude": "67.89", + "gcore_notes": "test", + "gcore_weight": "12", + "gcore_ip": "1.2.3.4", })), tc("Update record with metadata", withMeta(a("@", "1.2.3.4"), map[string]string{ "gcore_filters": "healthcheck,false;geodns,false;first_n,false,3", diff --git a/providers/oracle/oracleProvider.go b/providers/oracle/oracleProvider.go index a1e9cab70..7ac0fcb85 100644 --- a/providers/oracle/oracleProvider.go +++ b/providers/oracle/oracleProvider.go @@ -97,7 +97,7 @@ func (o *oracleProvider) ListZones() ([]string, error) { for listResp.OpcNextPage != nil { listResp, err = o.client.ListZones(ctx, dns.ListZonesRequest{ CompartmentId: &o.compartment, - Page: listResp.OpcNextPage, + Page: listResp.OpcNextPage, }) if err != nil {