diff options
Diffstat (limited to 'test/net/java/sip')
-rw-r--r-- | test/net/java/sip/communicator/slick/callhistory/TestCallHistoryService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/net/java/sip/communicator/slick/callhistory/TestCallHistoryService.java b/test/net/java/sip/communicator/slick/callhistory/TestCallHistoryService.java index 4245422..5b32109 100644 --- a/test/net/java/sip/communicator/slick/callhistory/TestCallHistoryService.java +++ b/test/net/java/sip/communicator/slick/callhistory/TestCallHistoryService.java @@ -317,12 +317,12 @@ public class TestCallHistoryService Collection<CallRecord> lastCall = callHistoryService.findLast(1); - assertEquals("There must be 1 Call", lastCall.size(), 1); + assertEquals("There must be 1 Call", 1, lastCall.size()); CallRecord callRecord = lastCall.iterator().next(); assertEquals("There must be 2 participants in the call", - callRecord.getPeerRecords().size(), 2); + 2, callRecord.getPeerRecords().size()); CallPeerRecord callP1 = callRecord.findPeerRecord(partAddresses[0]); |