Skip to content

Commit

Permalink
fix function name
Browse files Browse the repository at this point in the history
Signed-off-by: GilTS <gil@terasky.com>
  • Loading branch information
GilTeraSky committed Nov 20, 2023
1 parent f624ba5 commit c9a0ab0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ func TestAcceptancePermissionTemplateDataSource(t *testing.T) {
{
Config: GetDataProtectionPermissionTemplateConfig(),
Check: resource.ComposeTestCheckFunc(
verifyBackupScheduleDataSource(provider, dataProtectionPermissionTemplateDataSourceFullName),
verifyPermissionTemplateDataSource(provider, dataProtectionPermissionTemplateDataSourceFullName),
),
},
{
Config: GetEKSPermissionTemplateConfig(),
Check: resource.ComposeTestCheckFunc(
verifyBackupScheduleDataSource(provider, eksPermissionTemplateDataSourceFullName),
verifyPermissionTemplateDataSource(provider, eksPermissionTemplateDataSourceFullName),
),
},
},
Expand All @@ -67,7 +67,7 @@ func TestAcceptancePermissionTemplateDataSource(t *testing.T) {
t.Log("Permission template data source acceptance test complete!")
}

func verifyBackupScheduleDataSource(
func verifyPermissionTemplateDataSource(
provider *schema.Provider,
dataSourceName string,
) resource.TestCheckFunc {
Expand Down

0 comments on commit c9a0ab0

Please sign in to comment.