Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gdavison committed Apr 21, 2022
1 parent ded555f commit ca61710
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/service/elasticache/cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1421,7 +1421,7 @@ resource "aws_elasticache_cluster" "test" {
func testAccClusterConfig_snapshots(rName string) string {
return fmt.Sprintf(`
resource "aws_elasticache_cluster" "test" {
cluster_id = "tf-%s"
cluster_id = %[1]q
engine = "redis"
node_type = "cache.t3.small"
num_cache_nodes = 1
Expand All @@ -1435,7 +1435,7 @@ resource "aws_elasticache_cluster" "test" {
func testAccClusterConfig_snapshotsUpdated(rName string) string {
return fmt.Sprintf(`
resource "aws_elasticache_cluster" "test" {
cluster_id = "tf-%s"
cluster_id = %[1]q
engine = "redis"
node_type = "cache.t3.small"
num_cache_nodes = 1
Expand Down

0 comments on commit ca61710

Please sign in to comment.