Skip to content

Commit

Permalink
style: reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
gmeligio committed Apr 9, 2024
1 parent a979cf0 commit 024171e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/provider/domain_data_source_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func TestAccDomainDataSource(t *testing.T) {
Steps: []resource.TestStep{
{
ResourceName: resourceFqn,
Config: testAccDomainDataSource("foo.bar.example.com"),
Config: testAccDomainDataSource("foo.bar.example.com"),
Check: resource.ComposeAggregateTestCheckFunc(
resource.TestCheckResourceAttr(resourceFqn, "domain", "example.com"),
resource.TestCheckResourceAttr(resourceFqn, "host", "foo.bar.example.com"),
Expand All @@ -27,7 +27,7 @@ func TestAccDomainDataSource(t *testing.T) {
},
{
ResourceName: resourceFqn,
Config: testAccDomainDataSource("foo.example.com"),
Config: testAccDomainDataSource("foo.example.com"),
Check: resource.ComposeAggregateTestCheckFunc(
resource.TestCheckResourceAttr(resourceFqn, "domain", "example.com"),
resource.TestCheckResourceAttr(resourceFqn, "host", "foo.example.com"),
Expand All @@ -39,7 +39,7 @@ func TestAccDomainDataSource(t *testing.T) {
},
{
ResourceName: resourceFqn,
Config: testAccDomainDataSource("example.com"),
Config: testAccDomainDataSource("example.com"),
Check: resource.ComposeAggregateTestCheckFunc(
resource.TestCheckResourceAttr(resourceFqn, "domain", "example.com"),
resource.TestCheckResourceAttr(resourceFqn, "host", "example.com"),
Expand Down

0 comments on commit 024171e

Please sign in to comment.