Skip to content

Commit 2b3a5c0

Browse files
committed
test(builders): fix snowflake validation in fileBody test
1 parent d007789 commit 2b3a5c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/builders/__tests__/messages/fileBody.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ test('MessageBuilder.toFileBody returns JSON body and files', () => {
4848

4949
test('MessageBuilder.toFileBody returns empty files when attachments reference existing uploads', () => {
5050
const msg = new MessageBuilder().addAttachments(
51-
new AttachmentBuilder().setId('12345678901234567890').setFilename('existing.png'),
51+
new AttachmentBuilder().setId('1234567890123456789').setFilename('existing.png'),
5252
);
5353

5454
const { body, files } = msg.toFileBody();

0 commit comments

Comments
 (0)