mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-19 10:32:05 +01:00
[sinttest] Fix ordering of parameters in muc assertEquals checks
This commit is contained in:
parent
3d4e7938a7
commit
642f5bde61
1 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,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);
|
||||
}
|
||||
|
@ -133,7 +133,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