Revert "Fix incorrect test assertion"

This reverts commit 2094c2da7f.
This commit is contained in:
James Mills 2023-04-22 19:16:05 +10:00
parent 2094c2da7f
commit 8ec4b7be5f
No known key found for this signature in database
GPG Key ID: AC4C014F1440EBD6

View File

@ -205,6 +205,7 @@ func TestMessageBusSubscribeWithIndex(t *testing.T) {
msgs = mb.Subscribe("id1", "foo", WithIndex(1))
assert.Equal("foo", string((<-msgs).Payload))
assert.Equal("bar", string((<-msgs).Payload))
assert.Equal("baz", string((<-msgs).Payload))
}