Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ace-n committed Nov 15, 2022
1 parent f3b3937 commit 3d9d927
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scheduler/test/test.samples.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ describe('Cloud Scheduler Sample Tests', () => {
});

after(async () => {
let jobName = stdout && stdout.trim().split(' ').slice(-1);
const jobName = stdout && stdout.trim().split(' ').slice(-1);
if (jobName) {
await client.deleteJob({name: jobName});
}
})
});

it('should create a scheduler job', async () => {
stdout = execSync(
Expand Down

0 comments on commit 3d9d927

Please sign in to comment.