[jboss-cvs] JBossAS SVN: r60793 - in trunk/testsuite/src/main/org/jboss/test/cluster: test and 1 other directory.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Thu Feb 22 09:22:13 EST 2007
Author: jerrygauth
Date: 2007-02-22 09:22:13 -0500 (Thu, 22 Feb 2007)
New Revision: 60793
Modified:
trunk/testsuite/src/main/org/jboss/test/cluster/rpc/RPCUser.java
trunk/testsuite/src/main/org/jboss/test/cluster/test/RPCTestCase.java
Log:
JBAS-4006, minor tweak to cluster deserialization test
Modified: trunk/testsuite/src/main/org/jboss/test/cluster/rpc/RPCUser.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/cluster/rpc/RPCUser.java 2007-02-22 13:00:25 UTC (rev 60792)
+++ trunk/testsuite/src/main/org/jboss/test/cluster/rpc/RPCUser.java 2007-02-22 14:22:13 UTC (rev 60793)
@@ -78,14 +78,14 @@
p = new Person("John White");
p.setAddress("Main Street", "Boston", "MA", "02101");
p.setDob(new GregorianCalendar(1965, GregorianCalendar.MARCH, 30));
- p.setEmployer("Novell");
+ p.setEmployer("WidgetsRUs");
}
else
{
p = new Person("Jane Brown");
p.setAddress("High Street", "Sacramento", "CA", "94203");
p.setDob(new GregorianCalendar(1970, GregorianCalendar.JULY, 15));
- p.setEmployer("Acme");
+ p.setEmployer("AcmeLtd");
}
myPerson = p;
Modified: trunk/testsuite/src/main/org/jboss/test/cluster/test/RPCTestCase.java
===================================================================
--- trunk/testsuite/src/main/org/jboss/test/cluster/test/RPCTestCase.java 2007-02-22 13:00:25 UTC (rev 60792)
+++ trunk/testsuite/src/main/org/jboss/test/cluster/test/RPCTestCase.java 2007-02-22 14:22:13 UTC (rev 60793)
@@ -91,7 +91,7 @@
ObjectName rpcService = new ObjectName(RPC_SERVICE);
// try using a custom class as parameter
- String employer = "Novell";
+ String employer = "WidgetsRUs";
PersonQuery query = new PersonQuery();
query.setEmployer(employer);
Object[] parms = new Object[]{query};
More information about the jboss-cvs-commits
mailing list