Skip to content

Commit

Permalink
Fix part missed in rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
preardon committed Nov 20, 2023
1 parent bbb602e commit 498afc9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ public async Task When_Writing_Messages_To_The_Outbox_Async()
_retrievedMessages = await _sqlOutbox.GetAsync();

//should read last message last from the outbox
_retrievedMessages.Any(m => m.Id == _messageLatest.Id).Should().BeTrue();
_retrievedMessages.Any(m => m.Id == _messageThree.Id).Should().BeTrue();
//should read first message first from the outbox
_retrievedMessages.Any(m => m.Id == _messageEarliest.Id).Should().BeTrue();
_retrievedMessages.Any(m => m.Id == _messageOne.Id).Should().BeTrue();
//should read the messages from the outbox
_retrievedMessages.Should().HaveCount(3);
}
Expand Down

0 comments on commit 498afc9

Please sign in to comment.