Skip to content

Commit

Permalink
Fix the test TestAccRecord_basic
Browse files Browse the repository at this point in the history
  • Loading branch information
nlewo committed Jan 27, 2023
1 parent 3faa3dd commit d0f02ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gandi/resource_livedns_record_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func testAccConfigRecord() string {
return `
resource "gandi_livedns_record" "terraform_provider_gandi_com" {
zone = "terraform-provider-gandi.com"
name = "www"
name = "example"
type = "A"
ttl = 3600
values = ["192.168.0.1"]
Expand All @@ -50,7 +50,7 @@ func deleteRecord() {
liveDNS := gandi.NewLiveDNSClient(config)
err := liveDNS.DeleteDomainRecord(
"terraform-provider-gandi.com",
"www",
"example",
"A")
// To make golangci-lint happy :/
if err != nil {
Expand Down

0 comments on commit d0f02ae

Please sign in to comment.