Skip to content

Commit

Permalink
test: do not use a resumable upload for ACL file test (#1896)
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelgrosso1 committed Apr 28, 2022
1 parent aab390c commit 3d86c7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system-test/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1032,7 +1032,7 @@ describe('storage', () => {

it('should preserve file ACL', async () => {
const file = bucket.file(`file-${uuid.v4()}`);
await file.save('data');
await file.save('data', {resumable: false});

await file.acl.update(customAcl);
const [aclBefore] = await file.acl.get();
Expand Down

0 comments on commit 3d86c7c

Please sign in to comment.