test(transcription): backfill mentionedPersons on missed read-view fixture
Some checks failed
CI / Unit & Component Tests (push) Failing after 3m18s
CI / OCR Service Tests (push) Successful in 34s
CI / Backend Unit Tests (push) Failing after 3m5s
CI / Unit & Component Tests (pull_request) Failing after 3m10s
CI / OCR Service Tests (pull_request) Successful in 31s
CI / Backend Unit Tests (pull_request) Failing after 3m7s

The b2 fixture in the second describe block had been missed when the
TranscriptionBlockData type added the mentionedPersons field.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marcel
2026-04-29 00:39:45 +02:00
parent 64a61f705c
commit e3175f493c

View File

@@ -24,7 +24,10 @@ const blocks: TranscriptionBlockData[] = [
text: 'Second paragraph text.',
label: null,
sortOrder: 2,
version: 1
version: 1,
source: 'MANUAL',
reviewed: false,
mentionedPersons: []
}
];