Skip to content

Commit 79e2be1

Browse files
committed
fix: unit test
1 parent 081e553 commit 79e2be1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/unit/datasets/UpdateDataset.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ describe('execute', () => {
4242
expect(datasetsRepositoryStub.updateDataset).toHaveBeenCalledWith(
4343
1,
4444
testDataset,
45-
testMetadataBlocks
45+
testMetadataBlocks,
46+
undefined
4647
)
4748
})
4849

@@ -102,7 +103,8 @@ describe('execute', () => {
102103
expect(datasetsRepositoryStub.updateDataset).toHaveBeenCalledWith(
103104
1,
104105
testDataset,
105-
testMetadataBlocks
106+
testMetadataBlocks,
107+
undefined
106108
)
107109
})
108110

0 commit comments

Comments
 (0)