Skip to content

Commit 29d5b5d

Browse files
committed
chore: fix tests
1 parent d6b4965 commit 29d5b5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)