Skip to content

Commit b020f7b

Browse files
committed
fix test input
1 parent e9d149d commit b020f7b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

internal/provider/waypoint/data_source_waypoint_add_on_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ func TestAcc_Waypoint_AddOn_DataSource_WithInputVars(t *testing.T) {
7676
Config: testDataAddOnWithInputVarsConfig(templateName, appName, defName, addOnName),
7777
Check: resource.ComposeTestCheckFunc(
7878
resource.TestCheckResourceAttr(dataSourceName, "name", addOnName),
79-
resource.TestCheckResourceAttr(dataSourceName, "input_variables.#", "5"),
79+
resource.TestCheckResourceAttr(dataSourceName, "input_variables.#", "6"),
8080
),
8181
},
8282
},

internal/provider/waypoint/resource_waypoint_add_on_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ resource "hcp_waypoint_add_on" "test_var_opts" {
316316
{
317317
name = "vault_dweller_shelter"
318318
variable_type = "string"
319-
user_editable = true
319+
value = "value101"
320320
}
321321
]
322322
}

internal/provider/waypoint/resource_waypoint_application_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ resource "hcp_waypoint_application" "test_var_opts" {
331331
{
332332
name = "vault_dweller_shelter"
333333
variable_type = "string"
334-
user_editable = true
334+
value = "vault101"
335335
}
336336
]
337337
}`, tempName, appName)

0 commit comments

Comments
 (0)