Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
DrFaust92 committed Sep 10, 2021
1 parent 4ed3c00 commit a67a3a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions aws/resource_aws_sagemaker_endpoint_configuration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ func testAccCheckSagemakerEndpointConfigurationExists(n string) resource.TestChe
}

conn := testAccProvider.Meta().(*AWSClient).sagemakerconn
output, err := finder.EndpointConfigByName(conn, rs.Primary.ID)
_, err := finder.EndpointConfigByName(conn, rs.Primary.ID)

if err != nil {
return err
Expand Down Expand Up @@ -605,7 +605,7 @@ resource "aws_sagemaker_endpoint_configuration" "test" {
async_inference_config {
output_config {
s3_output_path = "s3://${aws_s3_bucket.test.bucket}/"
kms_key_id = aws_kms_key.test.arn
kms_key_id = aws_kms_key.test.arn
}
}
}
Expand Down Expand Up @@ -643,7 +643,7 @@ resource "aws_sagemaker_endpoint_configuration" "test" {
output_config {
s3_output_path = "s3://${aws_s3_bucket.test.bucket}/"
kms_key_id = aws_kms_key.test.arn
kms_key_id = aws_kms_key.test.arn
}
}
}
Expand Down

0 comments on commit a67a3a4

Please sign in to comment.