Skip to content

Commit

Permalink
Decode message that was fanout in the test
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanecek committed Sep 3, 2024
1 parent 9cd7033 commit 94a9cbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Ansible-RabbitMQ-Tests/RabbitMQClientTest.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -453,14 +453,14 @@ RabbitMQClientTest >> testPublishingToFanoutExchange [
consumingFrom: 'reverser-queue'
bindedTo: 'amq.fanout'
routedBy: routingKey
doing: [ :message | firstWorkerMessages add: message reversed ]
doing: [ :message | firstWorkerMessages add: message utf8Decoded reversed ]
during: [
self
runWorkerNamed: 'Appender'
consumingFrom: 'appender-queue'
bindedTo: 'amq.fanout'
routedBy: routingKey
doing: [ :message | secondWorkerMessages add: message ]
doing: [ :message | secondWorkerMessages add: message utf8Decoded ]
during: [ publisher publish: 'Hello' toExchange: 'amq.fanout' usingRoutingKey: routingKey ]
].

Expand Down

0 comments on commit 94a9cbd

Please sign in to comment.