Skip to content

Commit c199f15

Browse files
fix: fix system tests by choosing semver range for BigQuery (#297)
1 parent b48030f commit c199f15

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

handwritten/logging/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
"through2": "^2.0.3"
9292
},
9393
"devDependencies": {
94-
"@google-cloud/bigquery": "*",
94+
"@google-cloud/bigquery": "^2.0.1",
9595
"@google-cloud/nodejs-repo-tools": "^2.3.3",
9696
"@google-cloud/pubsub": "^0.20.1",
9797
"@google-cloud/storage": "^2.2.0",

handwritten/logging/system-test/logging.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
*/
1616

1717
import * as assert from 'assert';
18-
// tslint:disable-next-line variable-name
19-
const BigQuery = require('@google-cloud/bigquery');
18+
const {BigQuery} = require('@google-cloud/bigquery');
2019
import * as extend from 'extend';
2120
import * as is from 'is';
2221
import * as nock from 'nock';

0 commit comments

Comments
 (0)