Skip to content

Commit bfe304c

Browse files
authored
Fixed shared poolname on test env (#117)
1 parent 1c97580 commit bfe304c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

cloud/apikey_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func TestApiKey(t *testing.T) {
4040
Config: testResourceDataSourceApiKey(
4141
"sndev",
4242
apiKeyGeneratedName,
43-
"shared-gcp",
43+
"shared-gcp-prod",
4444
"streamnative",
4545
"us-central1", "rapid"),
4646
Check: resource.ComposeTestCheckFunc(

cloud/pulsar_cluster_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ func TestPulsarCluster(t *testing.T) {
4242
Config: testResourceDataSourcePulsarCluster(
4343
"sndev",
4444
clusterGeneratedName,
45-
"shared-gcp",
45+
"shared-gcp-prod",
4646
"streamnative",
4747
"us-central1", "rapid"),
4848
Check: resource.ComposeTestCheckFunc(
@@ -66,7 +66,7 @@ func TestPulsarClusterNoConfig(t *testing.T) {
6666
Config: testResourceDataSourcePulsarClusterWithoutConfig(
6767
"sndev",
6868
clusterGeneratedName,
69-
"shared-gcp",
69+
"shared-gcp-prod",
7070
"streamnative",
7171
"us-central1", "rapid"),
7272
Check: resource.ComposeTestCheckFunc(
@@ -152,7 +152,7 @@ func TestPulsarClusterConfigDrift(t *testing.T) {
152152
Config: testResourceDataSourcePulsarCluster(
153153
"sndev",
154154
clusterGeneratedName,
155-
"shared-gcp",
155+
"shared-gcp-prod",
156156
"streamnative",
157157
"us-central1", "rapid"),
158158
Check: resource.ComposeTestCheckFunc(
@@ -163,7 +163,7 @@ func TestPulsarClusterConfigDrift(t *testing.T) {
163163
Config: testResourceDataSourcePulsarCluster(
164164
"sndev",
165165
clusterGeneratedName,
166-
"shared-gcp",
166+
"shared-gcp-prod",
167167
"streamnative",
168168
"us-central1", "rapid"),
169169
PlanOnly: true,
@@ -186,7 +186,7 @@ func TestPulsarClusterNoConfigConfigDrift(t *testing.T) {
186186
Config: testResourceDataSourcePulsarClusterWithoutConfig(
187187
"sndev",
188188
clusterGeneratedName,
189-
"shared-gcp",
189+
"shared-gcp-prod",
190190
"streamnative",
191191
"us-central1", "rapid"),
192192
Check: resource.ComposeTestCheckFunc(
@@ -197,7 +197,7 @@ func TestPulsarClusterNoConfigConfigDrift(t *testing.T) {
197197
Config: testResourceDataSourcePulsarClusterWithoutConfig(
198198
"sndev",
199199
clusterGeneratedName,
200-
"shared-gcp",
200+
"shared-gcp-prod",
201201
"streamnative",
202202
"us-central1", "rapid"),
203203
PlanOnly: true,

cloud/pulsar_instance_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func TestPulsarInstance(t *testing.T) {
4040
"sndev",
4141
"terraform-test-pulsar-instance-b",
4242
"zonal",
43-
"shared-gcp",
43+
"shared-gcp-prod",
4444
"streamnative"),
4545
Check: resource.ComposeTestCheckFunc(
4646
testCheckPulsarInstanceExists("streamnative_pulsar_instance.test-pulsar-instance"),

0 commit comments

Comments
 (0)