@@ -56,8 +56,8 @@ describe('CloudServer Multiple Backend API Tests', () => {
5656 'another-meta' : 'another-value'
5757 } ) ,
5858 Tags : JSON . stringify ( {
59- ' tag1' : 'value1' ,
60- ' tag2' : 'value2'
59+ tag1 : 'value1' ,
60+ tag2 : 'value2'
6161 } ) ,
6262 StorageClass : 'us-east-1' ,
6363 StorageType : 'file' ,
@@ -76,7 +76,8 @@ describe('CloudServer Multiple Backend API Tests', () => {
7676 assert . ok ( location . dataStoreETag , 'dataStoreETag should exist' ) ;
7777 assert . ok (
7878 location . dataStoreETag . includes ( etag ) ,
79- `dataStoreETag should contain the original etag. Expected to include: ${ etag } , got: ${ location . dataStoreETag } `
79+ `dataStoreETag should contain the original etag.
80+ Expected to include: ${ etag } , got: ${ location . dataStoreETag } `
8081 ) ;
8182
8283 const deleteInput : MultipleBackendDeleteObjectInput = {
@@ -97,7 +98,7 @@ describe('CloudServer Multiple Backend API Tests', () => {
9798 } ;
9899 const getCommand = new GetObjectCommand ( getInput ) ;
99100 const getData = await client . send ( getCommand ) ;
100- const dataBody = await getData . Body . transformToString ( )
101+ const dataBody = await getData . Body . transformToString ( ) ;
101102 const bodyBuffer = Buffer . from ( dataBody ) ;
102103 const contentMD5 = crypto . createHash ( 'md5' ) . update ( bodyBuffer ) . digest ( 'hex' ) ;
103104 const putInput : MultipleBackendPutObjectInput = {
@@ -111,8 +112,8 @@ describe('CloudServer Multiple Backend API Tests', () => {
111112 'another-meta' : 'another-value'
112113 } ) ,
113114 Tags : JSON . stringify ( {
114- ' tag1' : 'value1' ,
115- ' tag2' : 'value2'
115+ tag1 : 'value1' ,
116+ tag2 : 'value2'
116117 } ) ,
117118 StorageClass : 'us-east-1' ,
118119 StorageType : 'file' ,
@@ -152,13 +153,13 @@ describe('CloudServer Multiple Backend API Tests', () => {
152153 StorageClass : 'us-east-1' ,
153154 StorageType : 'file' ,
154155 Tags : JSON . stringify ( {
155- ' Environment' : 'Test' ,
156- ' Project' : 'Cloudserver'
156+ Environment : 'Test' ,
157+ Project : 'Cloudserver'
157158 } ) ,
158159 Body : tagData ,
159160 DataStoreVersionId : 'v1' ,
160- SourceBucket : " aBucket" ,
161- ReplicationEndpointSite : " aVal"
161+ SourceBucket : ' aBucket' ,
162+ ReplicationEndpointSite : ' aVal'
162163 } ;
163164 const putTaggingCommand = new MultipleBackendPutObjectTaggingCommand ( putTaggingInput ) ;
164165 const putTaggingResult = await client . send ( putTaggingCommand ) ;
0 commit comments