Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
sebelga committed Apr 20, 2023
1 parent f145adb commit 52b5b5f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ describe('FileService', () => {
]);
{
const { files, total } = await fileService.find({
kind: [fileKind],
kind: [fileKind, fileKindNonDefault],
name: ['foo*'],
perPage: 2,
page: 1,
Expand All @@ -172,7 +172,7 @@ describe('FileService', () => {

{
const { files, total } = await fileService.find({
kind: [fileKind],
kind: [fileKind, fileKindNonDefault],
name: ['foo*'],
perPage: 2,
page: 2,
Expand Down

0 comments on commit 52b5b5f

Please sign in to comment.