Skip to content

Commit 17106c7

Browse files
committed
fix: resolve typing issue in syncChangesToPartInstance.test.ts
1 parent bb35893 commit 17106c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/job-worker/src/ingest/__tests__/syncChangesToPartInstance.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ describe('SyncChangesToPartInstancesWorker', () => {
100100
return mock<IngestModelReadonly>(
101101
{
102102
findPart: jest.fn(() => undefined),
103-
getGlobalPieces: jest.fn(() => []),
103+
getAllPieces: jest.fn(() => []),
104104
},
105105
mockOptions
106106
)
@@ -335,7 +335,7 @@ describe('SyncChangesToPartInstancesWorker', () => {
335335
return mock<IngestModelReadonly>(
336336
{
337337
findPart: jest.fn(() => undefined),
338-
getGlobalPieces: jest.fn(() => []),
338+
getAllPieces: jest.fn(() => []),
339339
},
340340
mockOptions
341341
)

0 commit comments

Comments
 (0)