Skip to content

Commit 3224d9f

Browse files
committed
CCM-11496: fix reference
1 parent fa5ce4b commit 3224d9f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lambdas/backend-api/src/__tests__/infra/routing-config-repository/repository.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ describe('RoutingConfigRepository', () => {
928928
owner: clientOwnerKey,
929929
},
930930
ReturnValues: 'ALL_NEW',
931-
TableName: TABLE_NAME,
931+
TableName: ROUTING_TABLE_NAME,
932932
UpdateExpression:
933933
'SET #name = :name, #updatedAt = :updatedAt, #updatedBy = :updatedBy',
934934
});
@@ -971,7 +971,7 @@ describe('RoutingConfigRepository', () => {
971971
owner: clientOwnerKey,
972972
},
973973
ReturnValues: 'ALL_NEW',
974-
TableName: TABLE_NAME,
974+
TableName: ROUTING_TABLE_NAME,
975975
UpdateExpression:
976976
'SET #campaignId = :campaignId, #updatedAt = :updatedAt, #updatedBy = :updatedBy',
977977
});
@@ -1024,7 +1024,7 @@ describe('RoutingConfigRepository', () => {
10241024
owner: clientOwnerKey,
10251025
},
10261026
ReturnValues: 'ALL_NEW',
1027-
TableName: TABLE_NAME,
1027+
TableName: ROUTING_TABLE_NAME,
10281028
UpdateExpression:
10291029
'SET #cascade = :cascade, #cascadeGroupOverrides = :cascadeGroupOverrides, #updatedAt = :updatedAt, #updatedBy = :updatedBy',
10301030
});
@@ -1075,7 +1075,7 @@ describe('RoutingConfigRepository', () => {
10751075
owner: clientOwnerKey,
10761076
},
10771077
ReturnValues: 'ALL_NEW',
1078-
TableName: TABLE_NAME,
1078+
TableName: ROUTING_TABLE_NAME,
10791079
UpdateExpression:
10801080
'SET #name = :name, #updatedAt = :updatedAt, #updatedBy = :updatedBy',
10811081
});
@@ -1119,7 +1119,7 @@ describe('RoutingConfigRepository', () => {
11191119
owner: clientOwnerKey,
11201120
},
11211121
ReturnValues: 'ALL_NEW',
1122-
TableName: TABLE_NAME,
1122+
TableName: ROUTING_TABLE_NAME,
11231123
UpdateExpression:
11241124
'SET #name = :name, #updatedAt = :updatedAt, #updatedBy = :updatedBy',
11251125
});

0 commit comments

Comments
 (0)