Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test transferstorage fix #1807

Closed
wants to merge 10 commits into from
2 changes: 1 addition & 1 deletion functions/billing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"license": "Apache-2.0",
"dependencies": {
"google-auth-library": "^6.0.0",
"googleapis": "^48.0.0",
"googleapis": "^50.0.0",
"slack": "^11.0.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion functions/slack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"dependencies": {
"@slack/events-api": "^2.3.0",
"googleapis": "^48.0.0"
"googleapis": "^50.0.0"
},
"devDependencies": {
"mocha": "^7.0.0",
Expand Down
2 changes: 1 addition & 1 deletion healthcare/datasets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"mocha": "^7.0.0"
},
"dependencies": {
"googleapis": "^49.0.0",
"googleapis": "^50.0.0",
"uuid": "^8.0.0",
"yargs": "^15.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion healthcare/dicom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"mocha": "^7.0.0"
},
"dependencies": {
"googleapis": "^49.0.0",
"googleapis": "^50.0.0",
"uuid": "^8.0.0",
"yargs": "^15.0.0",
"gtoken": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion healthcare/fhir/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"mocha": "^7.0.0"
},
"dependencies": {
"googleapis": "^49.0.0",
"googleapis": "^50.0.0",
"uuid": "^8.0.0",
"yargs": "^15.0.0",
"gtoken": "^5.0.0",
Expand Down
2 changes: 1 addition & 1 deletion healthcare/hl7v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"mocha": "^7.0.0"
},
"dependencies": {
"googleapis": "^49.0.0",
"googleapis": "^50.0.0",
"uuid": "^8.0.0",
"yargs": "^15.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion iot/http_example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"devDependencies": {
"@google-cloud/pubsub": "^1.0.0",
"googleapis": "^48.0.0",
"googleapis": "^50.0.0",
"mocha": "^7.0.0",
"uuid": "^8.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion iot/manager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"dependencies": {
"@google-cloud/iot": "^2.0.0",
"@google-cloud/pubsub": "^1.2.0",
"googleapis": "^48.0.0",
"googleapis": "^50.0.0",
"yargs": "^15.1.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion jobs/v3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"system-test": "mocha system-test/*.test.js --timeout=40000"
},
"dependencies": {
"googleapis": "^48.0.0",
"googleapis": "^50.0.0",
"uuid": "^8.0.0",
"yargs": "^15.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion storage-transfer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test": "npm run unit-test && npm run system-test"
},
"dependencies": {
"googleapis": "^48.0.0",
"googleapis": "^50.0.0",
"moment": "^2.24.0",
"yargs": "^15.0.0"
},
Expand Down
1 change: 1 addition & 0 deletions storage-transfer/system-test/transfer.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ it('should create a storage transfer job', (done) => {

program.createTransferJob(options, (err, transferJob) => {
assert.ifError(err);
// jobName is used by other tests below.
jobName = transferJob.name;
assert.strictEqual(transferJob.name.indexOf('transferJobs/'), 0);
assert.strictEqual(transferJob.description, description);
Expand Down
Loading