File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
sdk/test/Services/S3/IntegrationTests Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -220,10 +220,12 @@ public void PutObjectTaggingWithVersionTest()
220
220
// Put tagging for each version of the object
221
221
//
222
222
223
- Client . PutObjectTagging ( new PutObjectTaggingRequest {
223
+ Client . PutObjectTagging ( new PutObjectTaggingRequest
224
+ {
224
225
BucketName = bucketName ,
225
226
Key = key ,
226
- Tagging = {
227
+ Tagging = new Tagging
228
+ {
227
229
TagSet = new List < Tag > {
228
230
new Tag { Key = "key" , Value = "Value" }
229
231
}
@@ -235,7 +237,8 @@ public void PutObjectTaggingWithVersionTest()
235
237
{
236
238
BucketName = bucketName ,
237
239
Key = key ,
238
- Tagging = {
240
+ Tagging = new Tagging
241
+ {
239
242
TagSet = new List < Tag > {
240
243
new Tag { Key = "key" , Value = "Value2" }
241
244
} ,
You can’t perform that action at this time.
0 commit comments