Update PersonIdentifierWorkerNormalizerTest to include presence attribute in expected normalized data

- Replaced `id` with `definition_id` in expected output for consistency.
- Ensured `presence` attribute is validated in test cases.
This commit is contained in:
2025-10-21 15:29:17 +02:00
parent 808954df42
commit 1be82b3049

View File

@@ -116,10 +116,11 @@ class PersonIdentifierWorkerNormalizerTest extends TestCase
self::assertSame([
'type' => 'person_identifier_worker',
'id' => null,
'definition_id' => null,
'engine' => 'string',
'label' => ['en' => 'SSN'],
'isActive' => false,
'presence' => 'ON_EDIT'
], $normalized);
}