Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aquasecurity/trivy-aws
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d9b3778e1a38dc2fbe6057ec3dcc2e35f13b8a42
Choose a base ref
..
head repository: aquasecurity/trivy-aws
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fe20c0321a812a1ebe8c6430b5dc29e309cdd4c0
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 internal/adapters/cloud/aws/s3/s3_test.go
2 changes: 1 addition & 1 deletion internal/adapters/cloud/aws/s3/s3_test.go
Original file line number Diff line number Diff line change
@@ -96,7 +96,7 @@ func Test_S3BucketACLs(t *testing.T) {
}

assert.Equal(t, tt.details.bucketName, got.Name.Value())
assert.Equal(t, tt.details.acl, got.ACL.Value())
assert.Equal(t, string(tt.details.acl), got.ACL.Value())
if tt.details.encrypted {
// Amazon S3 now applies server-side encryption with Amazon S3 managed keys (SSE-S3)
assert.Equal(t, string(s3types.ServerSideEncryptionAes256), got.Encryption.Algorithm.Value())