You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by be...@apache.org on 2009/08/29 12:57:31 UTC

svn commit: r809111 - /mina/sandbox/vysper/trunk/server/extensions/xep0045-muc/src/test/java/org/apache/vysper/xmpp/modules/extension/xep0045_muc/inttest/MUCIntegrationTestCase.java

Author: berndf
Date: Sat Aug 29 10:57:30 2009
New Revision: 809111

URL: http://svn.apache.org/viewvc?rev=809111&view=rev
Log:
fix one more MUC integration test

Modified:
    mina/sandbox/vysper/trunk/server/extensions/xep0045-muc/src/test/java/org/apache/vysper/xmpp/modules/extension/xep0045_muc/inttest/MUCIntegrationTestCase.java

Modified: mina/sandbox/vysper/trunk/server/extensions/xep0045-muc/src/test/java/org/apache/vysper/xmpp/modules/extension/xep0045_muc/inttest/MUCIntegrationTestCase.java
URL: http://svn.apache.org/viewvc/mina/sandbox/vysper/trunk/server/extensions/xep0045-muc/src/test/java/org/apache/vysper/xmpp/modules/extension/xep0045_muc/inttest/MUCIntegrationTestCase.java?rev=809111&r1=809110&r2=809111&view=diff
==============================================================================
--- mina/sandbox/vysper/trunk/server/extensions/xep0045-muc/src/test/java/org/apache/vysper/xmpp/modules/extension/xep0045_muc/inttest/MUCIntegrationTestCase.java (original)
+++ mina/sandbox/vysper/trunk/server/extensions/xep0045-muc/src/test/java/org/apache/vysper/xmpp/modules/extension/xep0045_muc/inttest/MUCIntegrationTestCase.java Sat Aug 29 10:57:30 2009
@@ -72,7 +72,7 @@
         Room room = conference.findRoom(TestUtil.parseUnchecked(ROOM_JID));
         assertEquals(1, room.getOccupantCount());
         Occupant occupant = room.getOccupants().iterator().next();
-        assertEquals(TEST_USERNAME1, occupant.getJid().getFullQualifiedName());
+        assertEquals(TEST_USERNAME1, occupant.getJid().getBareJID().getFullQualifiedName());
         assertEquals("Nick", occupant.getName());