Skip to content

Commit

Permalink
fixed existing testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
lovenishs04 committed Jan 27, 2025
1 parent 48facd7 commit 6c70aa0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const exec = cmd => execSync(cmd, {encoding: 'utf8'});
const {describe, it, before} = require('mocha');
const {BigQuery} = require('@google-cloud/bigquery');

const organizationId = process.env.GCLOUD_ORGANIZATION;
const organizationId = '1081635000895';
const projectId = process.env.GOOGLE_SAMPLES_PROJECT;
const location = 'global';
const bigquery = new BigQuery();
Expand Down
2 changes: 1 addition & 1 deletion security-center/snippets/system-test/v2/muterule.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const exec = cmd => execSync(cmd, {encoding: 'utf8'});
const {describe, it, before} = require('mocha');

// TODO(developers): update for your own environment
const organizationId = process.env.GCLOUD_ORGANIZATION;
const organizationId = '1081635000895';
const location = 'global';

describe('Client with mute rule V2', async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const {describe, it, before} = require('mocha');
const {execSync} = require('child_process');
const exec = cmd => execSync(cmd, {encoding: 'utf8'});

const organizationId = process.env.GCLOUD_ORGANIZATION;
const organizationId = '1081635000895';

describe('Client with SourcesAndFindings', async () => {
let data;
Expand Down

0 comments on commit 6c70aa0

Please sign in to comment.