Skip to content

Commit d1d399a

Browse files
test: Initialize gax stream (#1368)
* Initialize gax stream * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * Keep the type on this variable * Downgrade promisify --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 5c0ddbc commit d1d399a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"precompile": "gts clean"
4242
},
4343
"dependencies": {
44-
"@google-cloud/promisify": "^4.0.0",
44+
"@google-cloud/promisify": "4.0.0",
4545
"arrify": "^2.0.1",
4646
"async-mutex": "^0.5.0",
4747
"concat-stream": "^2.0.0",

protos/protos.d.ts

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

protos/protos.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/request.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1886,7 +1886,7 @@ describe('Request', () => {
18861886
});
18871887

18881888
describe('requestStream_', () => {
1889-
let GAX_STREAM: gax.CancellableStream;
1889+
let GAX_STREAM: gax.CancellableStream = {} as gax.CancellableStream;
18901890
const CONFIG = {};
18911891

18921892
beforeEach(() => {

0 commit comments

Comments
 (0)