ARTEMIS-4925 adding missing assertion on the test

This commit is contained in:
Clebert Suconic 2024-07-17 12:02:41 -04:00
parent 569a07c287
commit 58f9e00874
1 changed files with 1 additions and 0 deletions

View File

@ -378,6 +378,7 @@ public class ReplicatedBothNodesMirrorTest extends SoakTestBase {
// lsof is showing a file descriptor associated with multiple threads. So it is expected to have quite a few repetitions // lsof is showing a file descriptor associated with multiple threads. So it is expected to have quite a few repetitions
// when the issue is happening we would have around 40k, 50k entries or a lot more if you add more messages. // when the issue is happening we would have around 40k, 50k entries or a lot more if you add more messages.
Assertions.assertTrue(openFiles < 2500, () -> "There was " + openFiles + " open files"); Assertions.assertTrue(openFiles < 2500, () -> "There was " + openFiles + " open files");
Assertions.assertEquals(0, errors.get(), "There are errors on the senders");
} }