Skip to content

Commit

Permalink
fixes test
Browse files Browse the repository at this point in the history
  • Loading branch information
shahadarsh committed Mar 14, 2024
1 parent be02ef1 commit 1fb1130
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions internal/provider/instance_resource_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ func TestTemboInstanceResource(t *testing.T) {
resource.TestCheckResourceAttr(resourceName, "postgres_configs.#", "2"),
resource.TestCheckResourceAttr(resourceName, "connection_pooler.enabled", "true"),
resource.TestCheckResourceAttr(resourceName, "connection_pooler.pooler.pool_mode", "transaction"),
resource.TestCheckResourceAttr(resourceName, "connection_pooler.pooler.parameters.max_client_conn", "50"),
resource.TestCheckResourceAttr(resourceName, "connection_pooler.pooler.parameters.default_pool_size", "5000"),
resource.TestCheckResourceAttr(resourceName, "connection_pooler.pooler.parameters.max_client_conn", "20"),
resource.TestCheckResourceAttr(resourceName, "connection_pooler.pooler.parameters.default_pool_size", "100"),
),
},
// Delete testing automatically occurs in TestCase
Expand Down Expand Up @@ -206,8 +206,8 @@ resource "tembo_instance" "test" {
pooler = {
pool_mode = "transaction",
parameters = {
max_client_conn = "50"
default_pool_size = "5000"
max_client_conn = "20"
default_pool_size = "100"
}
}
}
Expand Down

0 comments on commit 1fb1130

Please sign in to comment.