Skip to content

Commit b0c6e5b

Browse files
committed
fix: test .
1 parent c949dc5 commit b0c6e5b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/integration/files/FilesRepository.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,9 @@ describe('FilesRepository', () => {
630630

631631
test('should return error when dataset does not exist', async () => {
632632
const nonExistentDatasetId = 400000
633-
const errorExpected = new ReadError(`[404] Dataset with ID ${nonExistentDatasetId} not found`)
633+
const errorExpected = new ReadError(
634+
`[404] Dataset with ID ${nonExistentDatasetId} not found.`
635+
)
634636

635637
await expect(
636638
sut.getFileUploadDestination(nonExistentDatasetId, singlepartFile)

0 commit comments

Comments
 (0)