Skip to content

Commit

Permalink
fix: causeOfDeath check
Browse files Browse the repository at this point in the history
  • Loading branch information
jamil314 committed Jun 13, 2024
1 parent 176d049 commit 8545917
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ test.describe.serial('8. Validate declaration review page', () => {
* - Change button
*/
await expect(page.locator('#deathEvent-content #Cause')).toContainText(
declaration.event.cause.established ? 'No' : 'Yes'
declaration.event.cause.established ? 'Yes' : 'No'
)
await expect(page.locator('#deathEvent-content #Cause')).toContainText(
'Change'
Expand Down

0 comments on commit 8545917

Please sign in to comment.