Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
Signed-off-by: drfaust92 <[email protected]>
  • Loading branch information
DrFaust92 committed Oct 18, 2024
1 parent cbf9dac commit efb360f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/service/sagemaker/mlflow_tracking_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func TestAccSageMakerMlflowTrackingServer_basic(t *testing.T) {
Check: resource.ComposeTestCheckFunc(
testAccCheckMlflowTrackingServerExists(ctx, resourceName, &mpg),
resource.TestCheckResourceAttr(resourceName, "tracking_server_name", rName),
resource.TestCheckResourceAttr(resourceName, "automatic_model_registration", "false"),
resource.TestCheckResourceAttr(resourceName, "automatic_model_registration", acctest.CtFalse),
resource.TestCheckResourceAttr(resourceName, "tracking_server_size", "Small"),
resource.TestCheckResourceAttrSet(resourceName, "tracking_server_url"),
resource.TestCheckResourceAttrPair(resourceName, names.AttrRoleARN, "aws_iam_role.test", names.AttrARN),
Expand All @@ -54,7 +54,7 @@ func TestAccSageMakerMlflowTrackingServer_basic(t *testing.T) {
Check: resource.ComposeTestCheckFunc(
testAccCheckMlflowTrackingServerExists(ctx, resourceName, &mpg),
resource.TestCheckResourceAttr(resourceName, "tracking_server_name", rName),
resource.TestCheckResourceAttr(resourceName, "automatic_model_registration", "true"),
resource.TestCheckResourceAttr(resourceName, "automatic_model_registration", acctest.CtTrue),
resource.TestCheckResourceAttr(resourceName, "tracking_server_size", "Medium"),
resource.TestCheckResourceAttr(resourceName, "weekly_maintenance_window_start", "Sun:01:00"),
resource.TestCheckResourceAttrSet(resourceName, "tracking_server_url"),
Expand Down

0 comments on commit efb360f

Please sign in to comment.