Skip to content

Commit

Permalink
fix: remove tpc domain
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarowolfx committed Feb 9, 2024
1 parent 29f8d40 commit 4c7aa35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/bigquery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,18 +264,18 @@ describe('BigQuery', () => {
});

it('should allow overriding TPC universe', () => {
const universeDomain = 'apis-tpclp.goog/';
const universeDomain = 'fake-tpc-env.example.com/';
bq = new BigQuery({
universeDomain: universeDomain,
});
const calledWith = bq.calledWith_[0];
assert.strictEqual(
calledWith.baseUrl,
'https://bigquery.apis-tpclp.goog/bigquery/v2'
'https://bigquery.fake-tpc-env.example.com/bigquery/v2'
);
assert.strictEqual(
calledWith.apiEndpoint,
'https://bigquery.apis-tpclp.goog'
'https://bigquery.fake-tpc-env.example.com'
);
});

Expand Down

0 comments on commit 4c7aa35

Please sign in to comment.