Skip to content

Commit

Permalink
fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronblevy committed Dec 22, 2023
1 parent 2ce0060 commit 53d2306
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/provider/service_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func TestServiceResource_Read_Replica(t *testing.T) {
resource.TestCheckResourceAttr("timescale_service.read_replica", "memory_gb", "4"),
),
},
// Add VPC
// Add VPCd
{
Config: func() string {
c := replicaConfig
Expand Down Expand Up @@ -359,7 +359,7 @@ func newServiceAddHAReplica(config Config) string {

// newServiceWithReadReplica creates two resources, a primary instance and a read replica
func newServiceWithReadReplica(primary, replica Config) string {
return providerConfig + newServiceConfig(primary) + newReadReplica(replica)
return newServiceConfig(primary) + newReadReplica(replica)
}

func newReadReplica(config Config) string {
Expand Down

0 comments on commit 53d2306

Please sign in to comment.