Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
chdanielmueller committed Nov 19, 2024
1 parent f16e431 commit ae9dea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/amqp/subscriber.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ describe('AMQP Subscriber', () => {
expect(rawMessage.properties.contentType).toBeDefined();
expect(rawMessage.properties.contentType).toEqual('file');
expect(rawMessage.properties.headers).toBeDefined();
expect(rawMessage.properties.headers.key).toBeDefined();
expect(rawMessage.properties.headers.key).toEqual('value');
expect(rawMessage.properties.headers?.key).toBeDefined();
expect(rawMessage.properties.headers?.key).toEqual('value');

return dispose();
});
Expand Down

0 comments on commit ae9dea3

Please sign in to comment.