Skip to content

Commit

Permalink
test: fix sample test by pointing at a shared cluster with Agones (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
xwxw-g authored and NimJay committed Nov 11, 2022
1 parent fe82e5c commit d55c063
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion game-servers/snippets/test/create_cluster.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'});
const LOCATION = 'us-central1';
const GKE_CLUSTER_NAME =
process.env.SAMPLE_CLUSTER_NAME ||
'projects/1046198160504/locations/us-west1-a/clusters/grpc-bug-cluster';
'projects/217093627905/locations/us-central1/clusters/gke-shared-default';

describe('Game Servers Create Cluster Test', () => {
const realmsClient = new RealmsServiceClient();
Expand Down
2 changes: 1 addition & 1 deletion game-servers/snippets/test/delete_cluster.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'});
const LOCATION = 'us-central1';
const GKE_CLUSTER_NAME =
process.env.SAMPLE_CLUSTER_NAME ||
'projects/1046198160504/locations/us-west1-a/clusters/grpc-bug-cluster';
'projects/217093627905/locations/us-central1/clusters/gke-shared-default';

describe('Game Servers Delete Cluster Test', () => {
const realmsClient = new RealmsServiceClient();
Expand Down
2 changes: 1 addition & 1 deletion game-servers/snippets/test/get_cluster.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'});
const LOCATION = 'us-central1';
const GKE_CLUSTER_NAME =
process.env.SAMPLE_CLUSTER_NAME ||
'projects/1046198160504/locations/us-west1-a/clusters/grpc-bug-cluster';
'projects/217093627905/locations/us-central1/clusters/gke-shared-default';

describe('Game Servers Get Cluster Test', () => {
const realmsClient = new RealmsServiceClient();
Expand Down
2 changes: 1 addition & 1 deletion game-servers/snippets/test/list_clusters.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'});
const LOCATION = 'us-central1';
const GKE_CLUSTER_NAME =
process.env.SAMPLE_CLUSTER_NAME ||
'projects/1046198160504/locations/us-west1-a/clusters/grpc-bug-cluster';
'projects/217093627905/locations/us-central1/clusters/gke-shared-default';

describe('Game Servers List Clusters Test', () => {
const realmsClient = new RealmsServiceClient();
Expand Down

0 comments on commit d55c063

Please sign in to comment.