Skip to content

Commit 04c1c92

Browse files
committed
fix validation test
1 parent 51d2c7d commit 04c1c92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/backend/src/apps/postman/__tests__/common/parameters.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ describe('postman transactional email schema zod validation', () => {
132132

133133
it('should validate multiple valid CC emails', () => {
134134
validPayload.destinationEmailCc =
135-
'recipient@example.com, recipient2@example.com,recipient3@example.com'
135+
'recipientCc@example.com, recipientCc2@example.com,recipientCc3@example.com'
136136
const result = transactionalEmailSchema.safeParse(validPayload)
137137
assert(result.success === true) // using assert here for type assertion
138138
expect(result.data.destinationEmailCc).toEqual([

0 commit comments

Comments
 (0)