This commit is contained in:
2023-10-22 15:13:01 -04:00
parent 2e32ae4b5c
commit afebefe635
4 changed files with 66 additions and 9 deletions

View File

@@ -18,7 +18,7 @@ func TestAccExampleDataSource(t *testing.T) {
{
Config: testAccExampleDataSourceConfig,
Check: resource.ComposeAggregateTestCheckFunc(
resource.TestCheckResourceAttr("data.virtfusion_example.test", "id", "example-id"),
resource.TestCheckResourceAttr("data.virtfusion_server.test", "id", "example-id"),
),
},
},
@@ -26,7 +26,7 @@ func TestAccExampleDataSource(t *testing.T) {
}
const testAccExampleDataSourceConfig = `
data "virtfusion_example" "test" {
data "virtfusion_server" "test" {
configurable_attribute = "example"
}
`