Skip to content

Commit 9309d61

Browse files
authored
test: Fix jaas chat test again (typo). (#16548)
1 parent 4089702 commit 9309d61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/specs/jaas/chat.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ describe('JaaS CHAT_UPLOADED webhook.', () => {
6565
console.log(JSON.stringify(messages));
6666
expect(messages.some(m => m.name === 'p1' && m.content === 'foo')).toBe(true);
6767
expect(messages.some(m => m.name === 'p2' && m.content === 'bar')).toBe(true);
68-
expect(messages.some(m => m.name === 'p3' && m.content === 'baz')).toBe(true);
68+
expect(messages.some(m => m.name === 'p1' && m.content === 'baz')).toBe(true);
6969
messages.forEach(m => {
7070
expect(typeof m.timestamp).toBe('number');
7171
});

0 commit comments

Comments
 (0)