[jboss-cvs] JBossAS SVN: r88585 - branches/Branch_5_x_BootstrapLegacyRemoval/system/src/tests/org/jboss/test/server/profileservice.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun May 10 01:59:46 EDT 2009


Author: ALRubinger
Date: 2009-05-10 01:59:46 -0400 (Sun, 10 May 2009)
New Revision: 88585

Modified:
   branches/Branch_5_x_BootstrapLegacyRemoval/system/src/tests/org/jboss/test/server/profileservice/MainWithSimpleHotDeployTestCase.java
Log:
[JBAS-6856] Simple cast required by refactoring in Main

Modified: branches/Branch_5_x_BootstrapLegacyRemoval/system/src/tests/org/jboss/test/server/profileservice/MainWithSimpleHotDeployTestCase.java
===================================================================
--- branches/Branch_5_x_BootstrapLegacyRemoval/system/src/tests/org/jboss/test/server/profileservice/MainWithSimpleHotDeployTestCase.java	2009-05-10 05:52:55 UTC (rev 88584)
+++ branches/Branch_5_x_BootstrapLegacyRemoval/system/src/tests/org/jboss/test/server/profileservice/MainWithSimpleHotDeployTestCase.java	2009-05-10 05:59:46 UTC (rev 88585)
@@ -101,7 +101,7 @@
       String[] args = {"-c", "defaulthotdeploy", "-Djboss.server.deployerBeansPrefix="+deployPrefix};
       Main main = new Main();
       main.boot(args);
-      JBossASServer server = main.getServer();
+      JBossASServer server = (JBossASServer) main.getServer();
       assertTrue("Server", server instanceof JBossASServerImpl);
       JBossASServerImpl serverImpl = (JBossASServerImpl) server;
 




More information about the jboss-cvs-commits mailing list