Skip to content

Commit bf940bf

Browse files
committed
Rename client mock subscription file
1 parent 9e4a0eb commit bf940bf

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

infrastructure/terraform/components/callbacks/locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ locals {
55
root_domain_id = local.acct.route53_zone_ids["client-callbacks"]
66

77
clients_dir_path = "${path.module}/../../modules/clients"
8-
mock_client_file = "mock-it-client-subscription.json"
8+
mock_client_file = "mock-it-client.json"
99
mock_client_key = replace(local.mock_client_file, ".json", "")
1010
mock_client_path = "${path.module}/../../../../tests/integration/fixtures/${local.mock_client_file}"
1111

infrastructure/terraform/components/callbacks/s3_bucket_client_config.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "aws_s3_object" "mock_client_config" {
22
count = var.deploy_mock_webhook ? 1 : 0
33

44
bucket = module.client_config_bucket.id
5-
key = "client_subscriptions/mock-it-client-subscription.json"
5+
key = "client_subscriptions/mock-it-client.json"
66
content = jsonencode(local.mock_client_config)
77

88
kms_key_id = module.kms.key_arn

scripts/tests/integration.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cd "$(git rev-parse --show-toplevel)"
88

99
npm ci
1010

11-
SEED_CONFIG_FILE="$(pwd)/tests/integration/fixtures/mock-it-client-subscription.json"
11+
SEED_CONFIG_FILE="$(pwd)/tests/integration/fixtures/mock-it-client.json"
1212
MOCK_IT_CLIENT_ID=$(jq -r '.clientId' "${SEED_CONFIG_FILE}")
1313

1414
CLIENT_CONFIG=$(npm run --silent clients:get -- \
File renamed without changes.

tests/integration/helpers/seed-config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import seedConfigJson from "../fixtures/mock-it-client-subscription.json";
1+
import seedConfigJson from "../fixtures/mock-it-client.json";
22

33
export type MockItClientConfig = typeof seedConfigJson;
44

0 commit comments

Comments
 (0)