Skip to content

Commit

Permalink
Update test case function names
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakbshetty committed Feb 20, 2024
1 parent 2185243 commit 31c67c8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions internal/service/sagemaker/model_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ func testAccCheckModelExists(ctx context.Context, n string) resource.TestCheckFu
}
}

func testAccSageMakerModel_primaryContainerModelS3DataSourceAcceptEula(t *testing.T) {
func testAccModel_primaryContainerModelS3DataSourceAcceptEula(t *testing.T) {
ctx := acctest.Context(t)
rName := sdkacctest.RandomWithPrefix(acctest.ResourcePrefix)
resourceName := "aws_sagemaker_model.test"
Expand All @@ -534,7 +534,7 @@ func testAccSageMakerModel_primaryContainerModelS3DataSourceAcceptEula(t *testin
})
}

func testAccSageMakerModel_primaryContainerInferenceSpecificationName(t *testing.T) {
func testAccModel_primaryContainerInferenceSpecificationName(t *testing.T) {
ctx := acctest.Context(t)
rName := sdkacctest.RandomWithPrefix(acctest.ResourcePrefix)
resourceName := "aws_sagemaker_model.test"
Expand All @@ -561,7 +561,7 @@ func testAccSageMakerModel_primaryContainerInferenceSpecificationName(t *testing
})
}

func testAccSageMakerModel_primaryContainerMultiModelConfigModelCacheSetting(t *testing.T) {
func testAccModel_primaryContainerMultiModelConfigModelCacheSetting(t *testing.T) {
ctx := acctest.Context(t)
rName := sdkacctest.RandomWithPrefix(acctest.ResourcePrefix)
resourceName := "aws_sagemaker_model.test"
Expand All @@ -588,7 +588,7 @@ func testAccSageMakerModel_primaryContainerMultiModelConfigModelCacheSetting(t *
})
}

func testAccSageMakerModel_containersMultiModelConfigModelCacheSetting(t *testing.T) {
func testAccModel_containersMultiModelConfigModelCacheSetting(t *testing.T) {
ctx := acctest.Context(t)
rName := sdkacctest.RandomWithPrefix(acctest.ResourcePrefix)
resourceName := "aws_sagemaker_model.test"
Expand Down
8 changes: 4 additions & 4 deletions internal/service/sagemaker/sagemaker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ func TestAccSageMaker_serial(t *testing.T) {
"primaryContainerModelDataSource": TestAccSageMakerModel_primaryContainerModelDataSource,
"primaryContainerPrivateDockerRegistry": TestAccSageMakerModel_primaryContainerPrivateDockerRegistry,
"containers": TestAccSageMakerModel_containers,
"primaryContainerModelS3DataSource_AcceptEula": testAccSageMakerModel_primaryContainerModelS3DataSourceAcceptEula,
"primaryContainerinferencespecificationName": testAccSageMakerModel_primaryContainerInferenceSpecificationName,
"primaryContainer_multiModelConfig_modelCacheSetting": testAccSageMakerModel_primaryContainerMultiModelConfigModelCacheSetting,
"containers_multiModelConfig_modelCacheSetting": testAccSageMakerModel_containersMultiModelConfigModelCacheSetting,
"primaryContainerModelS3DataSource_AcceptEula": testAccModel_primaryContainerModelS3DataSourceAcceptEula,
"primaryContainerinferencespecificationName": testAccModel_primaryContainerInferenceSpecificationName,
"primaryContainer_multiModelConfig_modelCacheSetting": testAccModel_primaryContainerMultiModelConfigModelCacheSetting,
"containers_multiModelConfig_modelCacheSetting": testAccModel_containersMultiModelConfigModelCacheSetting,
},
"FlowDefinition": {
"basic": testAccFlowDefinition_basic,
Expand Down

0 comments on commit 31c67c8

Please sign in to comment.