diff --git a/web/src/lib/utils/thumbnail-util.spec.ts b/web/src/lib/utils/thumbnail-util.spec.ts index 906c25b1cf..88ce6dd7c3 100644 --- a/web/src/lib/utils/thumbnail-util.spec.ts +++ b/web/src/lib/utils/thumbnail-util.spec.ts @@ -40,9 +40,10 @@ describe('getAltText', () => { 'generates correctly formatted alt text when isVideo=$isVideo, city=$city, country=$country, people=$people.length', ({ isVideo, city, country, people, expected }) => { const asset = { - description: { city, country, people: (people || [])?.map((p: { name: string }) => p.name) }, + city, + country, + people: (people || [])?.map((p: { name: string }) => p.name), localDateTime: '2024-01-01T12:00:00.000Z', - people, isVideo, isImage: !isVideo, } as unknown as TimelineAsset;