Skip to content

Commit f44cde8

Browse files
lovenishs04iennae
authored andcommitted
fixed existing testcase
1 parent f4166cd commit f44cde8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

security-center/snippets/system-test/v2/bigQueryExport.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ const {execSync} = require('child_process');
2020
const exec = cmd => execSync(cmd, {encoding: 'utf8'});
2121
const {describe, it, before} = require('mocha');
2222
const {BigQuery} = require('@google-cloud/bigquery');
23-
24-
const organizationId = process.env.GCLOUD_ORGANIZATION;
23+
// TODO(developers): update for your own environment
24+
const organizationId = '1081635000895';
2525
const projectId = process.env.GOOGLE_SAMPLES_PROJECT;
2626
const location = 'global';
2727
const bigquery = new BigQuery();

security-center/snippets/system-test/v2/muterule.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const exec = cmd => execSync(cmd, {encoding: 'utf8'});
2121
const {describe, it, before} = require('mocha');
2222

2323
// TODO(developers): update for your own environment
24-
const organizationId = process.env.GCLOUD_ORGANIZATION;
24+
const organizationId = '1081635000895';
2525
const location = 'global';
2626

2727
describe('Client with mute rule V2', async () => {

security-center/snippets/system-test/v2/securityMarks.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ const {assert} = require('chai');
1919
const {describe, it, before} = require('mocha');
2020
const {execSync} = require('child_process');
2121
const exec = cmd => execSync(cmd, {encoding: 'utf8'});
22-
23-
const organizationId = process.env.GCLOUD_ORGANIZATION;
22+
// TODO(developers): update for your own environment
23+
const organizationId = '1081635000895';
2424

2525
describe('Client with SourcesAndFindings', async () => {
2626
let data;

0 commit comments

Comments
 (0)