mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-10 17:49:38 +02:00
Fixed initialization problem.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2491 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
5a754d1279
commit
6b887c9c32
2 changed files with 8 additions and 2 deletions
|
@ -64,7 +64,7 @@ import org.jivesoftware.smackx.*;
|
|||
*/
|
||||
public class MultiUserChatCreationTest extends SmackTestCase {
|
||||
|
||||
private String room = "fruta124@" + getMUCDomain();
|
||||
private String room;
|
||||
|
||||
/**
|
||||
* Constructor for MultiUserChatCreationTest.
|
||||
|
@ -141,4 +141,9 @@ public class MultiUserChatCreationTest extends SmackTestCase {
|
|||
protected int getMaxConnections() {
|
||||
return 2;
|
||||
}
|
||||
|
||||
protected void setUp() throws Exception {
|
||||
super.setUp();
|
||||
room = "fruta124@" + getMUCDomain();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue