diff --git a/build.xml b/build.xml
index 73cc4982a..e82dbcb37 100644
--- a/build.xml
+++ b/build.xml
@@ -105,6 +105,7 @@
+
@@ -162,11 +163,17 @@
+
+
+
+
+
-
+
-
+
diff --git a/tests/src/java/com/threerings/jme/client/JabberApp.java b/tests/src/java/com/threerings/jme/client/JabberApp.java
index 7c9d8670a..77a6d2f6b 100644
--- a/tests/src/java/com/threerings/jme/client/JabberApp.java
+++ b/tests/src/java/com/threerings/jme/client/JabberApp.java
@@ -45,9 +45,11 @@ import com.threerings.jme.JmeApp;
public class JabberApp extends JmeApp
{
// documentation inherited
- public void init ()
+ public boolean init ()
{
- super.init();
+ if (!super.init()) {
+ return false;
+ }
// initialize our client instance
_client = new JabberClient();
@@ -81,6 +83,8 @@ public class JabberApp extends JmeApp
// speed up key input
_input.setKeySpeed(100f);
+
+ return true;
}
public void run (String server, int port, String username, String password)
diff --git a/tests/src/java/com/threerings/parlor/TestConfig.java b/tests/src/java/com/threerings/parlor/TestConfig.java
index fb4409899..741e01726 100644
--- a/tests/src/java/com/threerings/parlor/TestConfig.java
+++ b/tests/src/java/com/threerings/parlor/TestConfig.java
@@ -21,7 +21,7 @@
package com.threerings.parlor;
-import com.threerings.parlor.client.GameConfigurator;
+import com.threerings.parlor.game.client.GameConfigurator;
import com.threerings.parlor.game.data.GameConfig;
public class TestConfig extends GameConfig