Skip to content

Commit

Permalink
fix(deps): update dependency @google-cloud/common-grpc to ^0.10.0 (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and JustinBeckwith committed Jan 29, 2019
1 parent 47df132 commit a39f3ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"proto:logging": "mkdir -p proto && pbjs -t static-module -w commonjs -p node_modules/google-proto-files google/logging/v2/logging.proto | pbts -o proto/logging.d.ts -"
},
"dependencies": {
"@google-cloud/common-grpc": "^0.9.2",
"@google-cloud/common-grpc": "^0.10.0",
"@google-cloud/paginator": "^0.1.0",
"@google-cloud/projectify": "^0.3.0",
"@google-cloud/promisify": "^0.3.0",
Expand Down
5 changes: 4 additions & 1 deletion system-test/logging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ describe('Logging', () => {
async function getAndDelete(method: () => Promise<[ServiceObject[]]>) {
const [objects] = await method();
return Promise.all(
objects.filter(o => (o.name || o.id).indexOf(TESTS_PREFIX) === 0)
objects
.filter(
// tslint:disable-next-line no-any
o => ((o as any).name || o.id).indexOf(TESTS_PREFIX) === 0)
.map(o => o.delete()));
}
});
Expand Down

0 comments on commit a39f3ab

Please sign in to comment.