You are viewing a plain text version of this content. The canonical link for it is here.
Posted to sandesha-dev@ws.apache.org by ch...@apache.org on 2006/09/13 08:29:49 UTC

svn commit: r442864 - /webservices/sandesha/trunk/java/test/src/org/apache/sandesha2/storage/SequencePropertyBeanMgrTest.java

Author: chamikara
Date: Tue Sep 12 23:29:48 2006
New Revision: 442864

URL: http://svn.apache.org/viewvc?view=rev&rev=442864
Log:
An update due to a refactoring of the Source.


Modified:
    webservices/sandesha/trunk/java/test/src/org/apache/sandesha2/storage/SequencePropertyBeanMgrTest.java

Modified: webservices/sandesha/trunk/java/test/src/org/apache/sandesha2/storage/SequencePropertyBeanMgrTest.java
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/java/test/src/org/apache/sandesha2/storage/SequencePropertyBeanMgrTest.java?view=diff&rev=442864&r1=442863&r2=442864
==============================================================================
--- webservices/sandesha/trunk/java/test/src/org/apache/sandesha2/storage/SequencePropertyBeanMgrTest.java (original)
+++ webservices/sandesha/trunk/java/test/src/org/apache/sandesha2/storage/SequencePropertyBeanMgrTest.java Tue Sep 12 23:29:48 2006
@@ -75,12 +75,12 @@
         bean.setValue("Value2");
         Iterator iter = mgr.find(bean).iterator();
         SequencePropertyBean tmp = (SequencePropertyBean) iter.next();
-        if (tmp.getSequenceID().equals("SeqId2")) {
+        if (tmp.getSequencePropertyKey().equals("SeqId2")) {
             tmp = (SequencePropertyBean) iter.next();
-            assertTrue(tmp.getSequenceID().equals("SeqId3"));
+            assertTrue(tmp.getSequencePropertyKey().equals("SeqId3"));
         } else {
             tmp = (SequencePropertyBean) iter.next();
-            assertTrue(tmp.getSequenceID().equals("SeqId2"));
+            assertTrue(tmp.getSequencePropertyKey().equals("SeqId2"));
         }
     }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org