Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: scaleway/terraform-provider-scaleway
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 91d5f8c8656e3c5f032493ffc079b8fc8eee32f9
Choose a base ref
..
head repository: scaleway/terraform-provider-scaleway
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8d0dd039a680d5c232aa9dd60109d48addabe8bb
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 scaleway/resource_iot_hub_test.go
4 changes: 2 additions & 2 deletions scaleway/resource_iot_hub_test.go
Original file line number Diff line number Diff line change
@@ -24,10 +24,10 @@ func testSweepIotHub(zone string) error {
}
iotAPI := iot.NewAPI(scwClient)

l.Debugf("sweeper: destroying the iot hub in (%s)", region)
l.Debugf("sweeper: destroying the iot hub in (%s)", zone)
listHubs, err := iotAPI.ListHubs(&iot.ListHubsRequest{}, scw.WithAllPages())
if err != nil {
return fmt.Errorf("error listing hubs in (%s) in sweeper: %s", region, err)
return fmt.Errorf("error listing hubs in (%s) in sweeper: %s", zone, err)
}

for _, hub := range listHubs.Hubs {