diff options
author | Damian Minkov <damencho@jitsi.org> | 2006-10-21 06:41:07 +0000 |
---|---|---|
committer | Damian Minkov <damencho@jitsi.org> | 2006-10-21 06:41:07 +0000 |
commit | cd8aaa93c481a11dad665f4f7034c0deb1cb30e7 (patch) | |
tree | afd0122401501cf51fe30eaeccf372cd38f7f162 /test | |
parent | c239edb6cc4eb4059ebc7822b6aea091850dc7ac (diff) | |
download | jitsi-cd8aaa93c481a11dad665f4f7034c0deb1cb30e7.zip jitsi-cd8aaa93c481a11dad665f4f7034c0deb1cb30e7.tar.gz jitsi-cd8aaa93c481a11dad665f4f7034c0deb1cb30e7.tar.bz2 |
Fix CallHistoryImpl and tests
Diffstat (limited to 'test')
-rw-r--r-- | test/net/java/sip/communicator/slick/callhistory/TestCallHistoryService.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/net/java/sip/communicator/slick/callhistory/TestCallHistoryService.java b/test/net/java/sip/communicator/slick/callhistory/TestCallHistoryService.java index 9766180..19be609 100644 --- a/test/net/java/sip/communicator/slick/callhistory/TestCallHistoryService.java +++ b/test/net/java/sip/communicator/slick/callhistory/TestCallHistoryService.java @@ -220,14 +220,14 @@ public class TestCallHistoryService assertTrue("Participant incorrect ", participant.getParticipantAddress(). - equals(participantAddresses.get(1))); + equals(participantAddresses.get(2))); rec = (CallRecord)resultIter.next(); participant = (CallParticipantRecord)rec.getParticipantRecords().get(0); assertTrue("Participant incorrect ", participant.getParticipantAddress(). - equals(participantAddresses.get(2))); + equals(participantAddresses.get(1))); /** * must find 1 record @@ -257,7 +257,7 @@ public class TestCallHistoryService assertTrue("Participant incorrect ", participant.getParticipantAddress(). - equals(participantAddresses.get(1))); + equals(participantAddresses.get(3))); rec = (CallRecord)resultIter.next(); participant = (CallParticipantRecord) rec.getParticipantRecords().get(0); @@ -271,7 +271,7 @@ public class TestCallHistoryService assertTrue("Participant incorrect ", participant.getParticipantAddress(). - equals(participantAddresses.get(3))); + equals(participantAddresses.get(1))); } public void checkRecordCompleteness() |