File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 4949 "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 -"
5050 },
5151 "dependencies" : {
52- "@google-cloud/common-grpc" : " ^0.9.2 " ,
52+ "@google-cloud/common-grpc" : " ^0.10.0 " ,
5353 "@google-cloud/paginator" : " ^0.1.0" ,
5454 "@google-cloud/projectify" : " ^0.3.0" ,
5555 "@google-cloud/promisify" : " ^0.3.0" ,
Original file line number Diff line number Diff line change @@ -85,7 +85,10 @@ describe('Logging', () => {
8585 async function getAndDelete ( method : ( ) => Promise < [ ServiceObject [ ] ] > ) {
8686 const [ objects ] = await method ( ) ;
8787 return Promise . all (
88- objects . filter ( o => ( o . name || o . id ) . indexOf ( TESTS_PREFIX ) === 0 )
88+ objects
89+ . filter (
90+ // tslint:disable-next-line no-any
91+ o => ( ( o as any ) . name || o . id ) . indexOf ( TESTS_PREFIX ) === 0 )
8992 . map ( o => o . delete ( ) ) ) ;
9093 }
9194 } ) ;
You can’t perform that action at this time.
0 commit comments