[jboss-svn-commits] JBL Code SVN: r36449 - labs/jbosstm/trunk/ArjunaCore/arjuna/tests/classes/com/hp/mwtests/ts/arjuna/tools.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Fri Dec 17 06:41:22 EST 2010


Author: mmusgrov
Date: 2010-12-17 06:41:22 -0500 (Fri, 17 Dec 2010)
New Revision: 36449

Modified:
   labs/jbosstm/trunk/ArjunaCore/arjuna/tests/classes/com/hp/mwtests/ts/arjuna/tools/ObjStoreBrowserTest.java
Log:
[JBTM-719] The probe() method needs to be called after start()

Modified: labs/jbosstm/trunk/ArjunaCore/arjuna/tests/classes/com/hp/mwtests/ts/arjuna/tools/ObjStoreBrowserTest.java
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/arjuna/tests/classes/com/hp/mwtests/ts/arjuna/tools/ObjStoreBrowserTest.java	2010-12-17 10:58:19 UTC (rev 36448)
+++ labs/jbosstm/trunk/ArjunaCore/arjuna/tests/classes/com/hp/mwtests/ts/arjuna/tools/ObjStoreBrowserTest.java	2010-12-17 11:41:22 UTC (rev 36449)
@@ -107,6 +107,7 @@
 
 		assertTrue(p.size() == 0);
 		osb.start();
+		osb.probe();
 
 		// there should not be any MBeans
 		assertNull(osb.findUid(Uid.nullUid()));
@@ -169,6 +170,7 @@
 
 		// generate MBeans representing the atomic action that was just committed
 		osb.start();
+		osb.probe();
 
 		// there should be one MBean corresponding to the AtomicAction A
 		UidWrapper w = osb.findUid(A.get_uid());
@@ -236,6 +238,7 @@
 		String validName = "jboss.jta:type=TestObjectStore";
 
 		osb.start();
+		osb.probe();
 
 		bean = new OSEntryBean();
 



More information about the jboss-svn-commits mailing list