Skip to content

Commit

Permalink
chore: new owl bot post processor docker image (#300)
Browse files Browse the repository at this point in the history
gcr.io/repo-automation-bots/owlbot-nodejs:latest@sha256:f93bb861d6f12574437bb9aee426b71eafd63b419669ff0ed029f4b7e7162e3f
  • Loading branch information
gcf-owl-bot[bot] authored May 10, 2021
1 parent b325b44 commit 3b2c642
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions container-analysis/snippets/test/containerAnalysis.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,11 +282,11 @@ describe('polling', () => {
});

after(async () => {
const [
discoveryOccurrences,
] = await client.getGrafeasClient().listNoteOccurrences({
name: `${formattedNoteName}-discovery-polling`,
});
const [discoveryOccurrences] = await client
.getGrafeasClient()
.listNoteOccurrences({
name: `${formattedNoteName}-discovery-polling`,
});
discoveryOccurrences.forEach(async occurrence => {
await client.getGrafeasClient().deleteOccurrence({name: occurrence.name});
});
Expand Down Expand Up @@ -386,9 +386,7 @@ describe('pubsub', () => {

// create test occurrences
for (let i = 0; i < occurrenceCount; i++) {
const [
pubSubOccurrence,
] = await client
const [pubSubOccurrence] = await client
.getGrafeasClient()
.createOccurrence(pubSubOccurrenceReq);
await client
Expand Down

0 comments on commit 3b2c642

Please sign in to comment.