Skip to content

Commit

Permalink
Add CHANGELOG entry
Browse files Browse the repository at this point in the history
  • Loading branch information
tohhsinpei committed Mar 25, 2022
1 parent 9ea5ba9 commit 862b848
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,2 +1,3 @@
- Fixes bug where resumable uploads were not setting custom metadata on upload (#3398).
- Fixes bug where GCS metadataUpdate cloud functions were triggered in incorrect situations (#3398).
- Fixes issue with importing Storage Emulator data exported prior to v10.3.0 (#4358).
4 changes: 2 additions & 2 deletions scripts/storage-emulator-integration/import/tests.ts
Expand Up @@ -23,7 +23,7 @@ describe("Import Emulator Data", () => {

await supertest(STORAGE_EMULATOR_HOST)
.get(`/v0/b/${bucket}/o/test_upload.jpg`)
.set({Authorization: "Bearer owner"})
.set({ Authorization: "Bearer owner" })
.expect(200);
});

Expand All @@ -33,7 +33,7 @@ describe("Import Emulator Data", () => {

await supertest(STORAGE_EMULATOR_HOST)
.get(`/v0/b/${bucket}/o/test_upload.jpg`)
.set({Authorization: "Bearer owner"})
.set({ Authorization: "Bearer owner" })
.expect(200);
});

Expand Down

0 comments on commit 862b848

Please sign in to comment.