Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
irataxy committed Nov 18, 2020
1 parent f19b1f8 commit 6800d15
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion samples/test/transcoder.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ after(async () => {
try {
await deleteFiles();
await storage.bucket(bucketName).delete();
} catch (err) {} // Ignore error
} catch (err) {
console.log("Cannot delete bucket");
}
});

describe('Job template functions', () => {
Expand Down

0 comments on commit 6800d15

Please sign in to comment.