mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-19 10:32:05 +01:00
Merge remote-tracking branch 'github/pr/469' into muc
This commit is contained in:
commit
a36251ff7d
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ public class MultiUserChatIntegrationTest extends AbstractSmackIntegrationTest {
|
|||
assertNotNull(mucUser);
|
||||
assertTrue(mucUser.getStatus().contains(MUCUser.Status.PRESENCE_TO_SELF_110));
|
||||
assertEquals(mucAddress + "/nick-one", reflectedJoinPresence.getFrom().toString());
|
||||
assertEquals(reflectedJoinPresence.getTo().toString(), conOne.getUser().asEntityFullJidIfPossible().toString());
|
||||
assertEquals(conOne.getUser().asEntityFullJidIfPossible().toString(), reflectedJoinPresence.getTo().toString());
|
||||
} finally {
|
||||
tryDestroy(muc);
|
||||
}
|
||||
|
@ -136,7 +136,7 @@ public class MultiUserChatIntegrationTest extends AbstractSmackIntegrationTest {
|
|||
|
||||
assertTrue(mucUser.getStatus().contains(MUCUser.Status.PRESENCE_TO_SELF_110));
|
||||
assertEquals(mucAddress + "/nick-one", reflectedLeavePresence.getFrom().toString());
|
||||
assertEquals(reflectedLeavePresence.getTo().toString(), conOne.getUser().asEntityFullJidIfPossible().toString());
|
||||
assertEquals(conOne.getUser().asEntityFullJidIfPossible().toString(), reflectedLeavePresence.getTo().toString());
|
||||
} finally {
|
||||
tryDestroy(muc);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue