Skip to content

Commit ae15d8d

Browse files
committed
Lint fix
1 parent 71fe19c commit ae15d8d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/kafka/test/publisher/PermissionPublisher.spec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ describe('PermissionPublisher - init', () => {
107107
// When
108108
await expect(
109109
publisher.publish('bad topic' as any, {} as any), // Intentionally bad topic to force the error
110-
).rejects.toThrowErrorMatchingInlineSnapshot(`[Error: Message schemas not found for topic: bad topic]`)
110+
).rejects.toThrowErrorMatchingInlineSnapshot(
111+
'[Error: Message schemas not found for topic: bad topic]',
112+
)
111113
})
112114

113115
it('should fail if there is no schema for message type', async () => {

0 commit comments

Comments
 (0)