Author: mriou
Date: Tue Dec 18 16:43:51 2007
New Revision: 605376

URL: http://svn.apache.org/viewvc?rev=605376&view=rev
Log:
Small fix on functions

Modified:
    ode/sandbox/simpel/src/test/resources/auction.simpel

Modified: ode/sandbox/simpel/src/test/resources/auction.simpel
URL: 
http://svn.apache.org/viewvc/ode/sandbox/simpel/src/test/resources/auction.simpel?rev=605376&r1=605375&r2=605376&view=diff
==============================================================================
--- ode/sandbox/simpel/src/test/resources/auction.simpel (original)
+++ ode/sandbox/simpel/src/test/resources/auction.simpel Tue Dec 18 16:43:51 
2007
@@ -5,11 +5,11 @@
 function auctionIdFromAnswer(answer) {
   answer.auctionId;
 }
-function auctionIdFromBuyer(answer) {
-  answer.auctionId;
+function auctionIdFromBuyer(buyer) {
+  buyer.ID;
 }
-function auctionIdFromSeller(answer) {
-  answer.auctionId;
+function auctionIdFromSeller(seller) {
+  seller.auctionId;
 }
 
 # Auction process as defined in chapter 15.4 of the BPEL 2.0 specification


Reply via email to