Skip to content

Commit

Permalink
N21-1967 fixes test
Browse files Browse the repository at this point in the history
  • Loading branch information
arnegns committed Jun 17, 2024
1 parent bac7095 commit afc1317
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,15 @@ describe('CopyFilesOfParentParamBuilder', () => {
userId,
source: {
parentType: FileRecordParentType.Task,
schoolId: sourceEntity.getSchoolId(),
parentId: sourceEntity.id,
storageLocationId: sourceEntity.getSchoolId(),
storageLocation: StorageLocation.SCHOOL,
},
target: {
parentType: FileRecordParentType.Task,
schoolId: targetEntity.getSchoolId(),
parentId: targetEntity.id,
storageLocationId: targetEntity.getSchoolId(),
storageLocation: StorageLocation.SCHOOL,
},
};

Expand All @@ -51,13 +53,15 @@ describe('CopyFilesOfParentParamBuilder', () => {
userId,
source: {
parentType: FileRecordParentType.Lesson,
schoolId: sourceEntity.getSchoolId(),
parentId: sourceEntity.id,
storageLocationId: sourceEntity.getSchoolId(),
storageLocation: StorageLocation.SCHOOL,
},
target: {
parentType: FileRecordParentType.Lesson,
schoolId: targetEntity.getSchoolId(),
parentId: targetEntity.id,
storageLocationId: targetEntity.getSchoolId(),
storageLocation: StorageLocation.SCHOOL,
},
};

Expand Down

0 comments on commit afc1317

Please sign in to comment.