Skip to content

Commit

Permalink
fix redis acc tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nvthongswansea committed Sep 26, 2023
1 parent 8b9b8e8 commit da12c5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gridscale/resource_gridscale_redis_cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func testAccCheckResourceGridscaleRedisCacheConfig_basic(name string) string {
return fmt.Sprintf(`
resource "gridscale_redis_cache" "test" {
name = "%s"
release = "7.0"
release = "7"
performance_class = "standard"
}
`, name)
Expand All @@ -53,7 +53,7 @@ func testAccCheckResourceGridscaleRedisCacheConfig_basic_update() string {
return fmt.Sprintf(`
resource "gridscale_redis_cache" "test" {
name = "newname"
release = "7.0"
release = "7"
performance_class = "standard"
labels = ["test"]
}
Expand Down
4 changes: 2 additions & 2 deletions gridscale/resource_gridscale_redis_store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func testAccCheckResourceGridscaleRedisStoreConfig_basic(name string) string {
return fmt.Sprintf(`
resource "gridscale_redis_store" "test" {
name = "%s"
release = "7.0"
release = "7"
performance_class = "standard"
}
`, name)
Expand All @@ -53,7 +53,7 @@ func testAccCheckResourceGridscaleRedisStoreConfig_basic_update() string {
return fmt.Sprintf(`
resource "gridscale_redis_store" "test" {
name = "newname"
release = "7.0"
release = "7"
performance_class = "standard"
labels = ["test"]
}
Expand Down

0 comments on commit da12c5d

Please sign in to comment.