Skip to content

Commit eb023d6

Browse files
chore: linting (#309)
1 parent 581e847 commit eb023d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

asset/snippets/exportAssets.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async function main(dumpFilePath) {
4949
// Do things with with the response.
5050
console.log(result);
5151
}
52-
exportAssets().catch((err) => {
52+
exportAssets().catch(err => {
5353
throw err;
5454
});
5555
// [END asset_quickstart_export_assets]

asset/snippets/test/sample.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ describe('quickstart sample tests', () => {
4949
await bucket.delete();
5050
});
5151

52-
it('should export assets to specified path', async function() {
52+
it('should export assets to specified path', async function () {
5353
this.retries(2);
5454
await delay(this.test);
5555
const dumpFilePath = `gs://${bucketName}/my-assets.txt`;

0 commit comments

Comments
 (0)