Skip to content

Commit 27984a0

Browse files
committed
CCM-11966: Fix typecheck issues
1 parent b39c796 commit 27984a0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,8 @@ describe('templateRepository', () => {
671671
const response = await templateRepository.submit(
672672
'abc-def-ghi-jkl-123',
673673
user,
674-
0
674+
0,
675+
false
675676
);
676677

677678
expect(response).toEqual({
@@ -696,7 +697,8 @@ describe('templateRepository', () => {
696697
const response = await templateRepository.submit(
697698
'abc-def-ghi-jkl-123',
698699
user,
699-
0
700+
0,
701+
false
700702
);
701703

702704
expect(response).toEqual({
@@ -734,7 +736,7 @@ describe('templateRepository', () => {
734736
})
735737
.resolves({ Attributes: databaseTemplate });
736738

737-
const response = await templateRepository.submit(id, user, 0);
739+
const response = await templateRepository.submit(id, user, 0, false);
738740

739741
expect(response).toEqual({
740742
data: databaseTemplate,

0 commit comments

Comments
 (0)