Skip to content

Commit

Permalink
wp: Fix data source vars test.
Browse files Browse the repository at this point in the history
Typo in new field name "input_variables" was fixed. The # of variables also has changed since `waypoint_application` is counted among the variables.
  • Loading branch information
paladin-devops committed Jun 4, 2024
1 parent 440b517 commit 6d823c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func TestAccWaypoint_Application_DataSource_WithInputVars(t *testing.T) {
Config: testDataApplicationWithInputVarsConfig(templateName, applicationName),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr(dataSourceName, "name", applicationName),
resource.TestCheckResourceAttr(dataSourceName, "input_vars.#", "2"),
resource.TestCheckResourceAttr(dataSourceName, "input_variables.#", "3"),
),
},
},
Expand Down

0 comments on commit 6d823c5

Please sign in to comment.