Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions linkinator.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@
"skip": [
"https://codecov.io/gh/googleapis/",
"www.googleapis.com",
"img.shields.io",
"https://www.npmjs.org/package/@google-cloud/bigquery-storage",
"https://github.com/googleapis/nodejs-bigquery-storage/tree/master/samples",
"https://github.com/googleapis/nodejs-bigquery-storage/blob/master/samples/quickstart.js"
"img.shields.io"
]
}
14 changes: 4 additions & 10 deletions synth.metadata
Original file line number Diff line number Diff line change
@@ -1,19 +1,13 @@
{
"updateTime": "2020-02-18T22:56:39.544261Z",
"updateTime": "2020-03-03T17:23:33.988627Z",
"sources": [
{
"git": {
"name": ".",
"remote": "sso://user/steffanyb/nodejs-bigquery-storage",
"sha": "6152883ee18789d86f9d44ffc8433b55b7889118"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
"sha": "ab2685d8d3a0e191dc8aef83df36773c07cb3d06",
"internalRef": "295738415"
"sha": "a78ed801b82a5c6d9c5368e24b1412212e541bb7",
"internalRef": "298607357",
"log": "a78ed801b82a5c6d9c5368e24b1412212e541bb7\nPublishing v3 protos and configs.\n\nPiperOrigin-RevId: 298607357\n\n4a180bfff8a21645b3a935c2756e8d6ab18a74e0\nautoml/v1beta1 publish proto updates\n\nPiperOrigin-RevId: 298484782\n\n6de6e938b7df1cd62396563a067334abeedb9676\nchore: use the latest gapic-generator and protoc-java-resource-name-plugin in Bazel workspace.\n\nPiperOrigin-RevId: 298474513\n\n244ab2b83a82076a1fa7be63b7e0671af73f5c02\nAdds service config definition for bigqueryreservation v1\n\nPiperOrigin-RevId: 298455048\n\n"
}
},
{
Expand Down
14 changes: 8 additions & 6 deletions test/gapic-big_query_storage-v1beta1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -319,9 +319,10 @@ describe('v1beta1.BigQueryStorageClient', () => {
projectId: 'bogus',
});
// Mock request
const request = {
readPosition: {stream: ''},
};
const request: protosTypes.google.cloud.bigquery.storage.v1beta1.IReadRowsRequest = {};
request.readPosition = {};
request.readPosition.stream = {};
request.readPosition.stream.name = '';
// Mock response
const expectedResponse = {};
// Mock gRPC layer
Expand All @@ -346,9 +347,10 @@ describe('v1beta1.BigQueryStorageClient', () => {
projectId: 'bogus',
});
// Mock request
const request = {
readPosition: {stream: ''},
};
const request: protosTypes.google.cloud.bigquery.storage.v1beta1.IReadRowsRequest = {};
request.readPosition = {};
request.readPosition.stream = {};
request.readPosition.stream.name = '';
// Mock response
const expectedResponse = {};
// Mock gRPC layer
Expand Down