Skip to content

Commit

Permalink
fix: expected totalFilesCount in the integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MellyGray committed Jan 17, 2024
1 parent 2788a3d commit e68da34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/files/FilesRepository.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ describe('FilesRepository', () => {
assert.match(actual.files[0].name, testTextFile3Name);
assert.match(actual.files[1].name, testTextFile2Name);
assert.match(actual.files[2].name, testTextFile1Name);
assert.match(actual.totalFilesCount, 4);
assert.match(actual.totalFilesCount, 3);
});

test('should return error when dataset does not exist', async () => {
Expand Down Expand Up @@ -187,7 +187,7 @@ describe('FilesRepository', () => {
assert.match(actual.files[0].name, testTextFile3Name);
assert.match(actual.files[1].name, testTextFile2Name);
assert.match(actual.files[2].name, testTextFile1Name);
assert.match(actual.totalFilesCount, 4);
assert.match(actual.totalFilesCount, 3);
});

test('should return error when dataset does not exist', async () => {
Expand Down

0 comments on commit e68da34

Please sign in to comment.