File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ describe('set', () => {
272272 await blobs . set ( key , value , { ttl } )
273273 } )
274274
275- test ( 'Throws when a pre-signed URL returns a non-200 status code' , async ( ) => {
275+ test ( 'Throws when the API returns a non-200 status code' , async ( ) => {
276276 const fetcher = async ( ...args : Parameters < typeof globalThis . fetch > ) => {
277277 const [ url , options ] = args
278278 const headers = options ?. headers as Record < string , string >
@@ -346,7 +346,7 @@ describe('delete', () => {
346346 await blobs . delete ( key )
347347 } )
348348
349- test ( 'Throws when a pre-signed URL returns a non-200 status code' , async ( ) => {
349+ test ( 'Throws when the API returns a non-200 status code' , async ( ) => {
350350 const fetcher = async ( ...args : Parameters < typeof globalThis . fetch > ) => {
351351 const [ url , options ] = args
352352 const headers = options ?. headers as Record < string , string >
You can’t perform that action at this time.
0 commit comments