File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ describe('set', () => {
272
272
await blobs . set ( key , value , { ttl } )
273
273
} )
274
274
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 ( ) => {
276
276
const fetcher = async ( ...args : Parameters < typeof globalThis . fetch > ) => {
277
277
const [ url , options ] = args
278
278
const headers = options ?. headers as Record < string , string >
@@ -346,7 +346,7 @@ describe('delete', () => {
346
346
await blobs . delete ( key )
347
347
} )
348
348
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 ( ) => {
350
350
const fetcher = async ( ...args : Parameters < typeof globalThis . fetch > ) => {
351
351
const [ url , options ] = args
352
352
const headers = options ?. headers as Record < string , string >
You can’t perform that action at this time.
0 commit comments