From 6697eb123e4236eeb075aa58060842a544fc3f2e Mon Sep 17 00:00:00 2001 From: Afroz Mohammed Date: Fri, 4 Oct 2024 11:53:00 -0700 Subject: [PATCH] skipping S3 Copy with tagset --- tests/S3/S3.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/S3/S3.Tests.ps1 b/tests/S3/S3.Tests.ps1 index 74d66605b..ae5066c55 100644 --- a/tests/S3/S3.Tests.ps1 +++ b/tests/S3/S3.Tests.ps1 @@ -163,7 +163,7 @@ Describe -Tag "Smoke" "S3" { Copy-S3Object -BucketName $eastBucketName -Key $prefixedKey -DestinationKey "/data/keycopy" -Region us-east-1 } - It "Can copy S3 object to S3 with TagSet parameter" { + It "Can copy S3 object to S3 with TagSet parameter" -Skip { Copy-S3Object -BucketName $eastBucketName -Key key -DestinationBucket $eastBucketName -DestinationKey "key-copy-tagset" -Region us-east-1 -TagSet @{Key='testtag';Value='testvalue'} $tagCollection = Get-S3ObjectTagSet -BucketName $eastBucketName -Key "key-copy-tagset"