Skip to content

Commit

Permalink
chore: linting (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored Apr 10, 2020
1 parent 581e847 commit eb023d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion asset/snippets/exportAssets.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async function main(dumpFilePath) {
// Do things with with the response.
console.log(result);
}
exportAssets().catch((err) => {
exportAssets().catch(err => {
throw err;
});
// [END asset_quickstart_export_assets]
Expand Down
2 changes: 1 addition & 1 deletion asset/snippets/test/sample.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ describe('quickstart sample tests', () => {
await bucket.delete();
});

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

0 comments on commit eb023d6

Please sign in to comment.