Return-Path: X-Original-To: apmail-incubator-airavata-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-airavata-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4BFE498E5 for ; Fri, 15 Jun 2012 20:22:08 +0000 (UTC) Received: (qmail 90826 invoked by uid 500); 15 Jun 2012 20:22:08 -0000 Delivered-To: apmail-incubator-airavata-commits-archive@incubator.apache.org Received: (qmail 90793 invoked by uid 500); 15 Jun 2012 20:22:08 -0000 Mailing-List: contact airavata-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: airavata-dev@incubator.apache.org Delivered-To: mailing list airavata-commits@incubator.apache.org Received: (qmail 90786 invoked by uid 99); 15 Jun 2012 20:22:08 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Jun 2012 20:22:08 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Jun 2012 20:22:05 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id B409D2388978; Fri, 15 Jun 2012 20:21:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1350780 - /incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/SimpleForEachWorkflowTest.java Date: Fri, 15 Jun 2012 20:21:44 -0000 To: airavata-commits@incubator.apache.org From: heshan@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120615202144.B409D2388978@eris.apache.org> Author: heshan Date: Fri Jun 15 20:21:44 2012 New Revision: 1350780 URL: http://svn.apache.org/viewvc?rev=1350780&view=rev Log: Fixing a typo that will result in running a wrong workflow. Modified: incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/SimpleForEachWorkflowTest.java Modified: incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/SimpleForEachWorkflowTest.java URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/SimpleForEachWorkflowTest.java?rev=1350780&r1=1350779&r2=1350780&view=diff ============================================================================== --- incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/SimpleForEachWorkflowTest.java (original) +++ incubator/airavata/trunk/modules/xbaya-gui/src/test/java/org/apache/airavata/xbaya/interpreter/SimpleForEachWorkflowTest.java Fri Jun 15 20:21:44 2012 @@ -55,9 +55,8 @@ public class SimpleForEachWorkflowTest { @Test public void testScheduleDynamically() throws IOException, URISyntaxException, WorkflowException { logger.info("Running SimpleForEachWorkflowTest..."); - URL systemResource = this.getClass().getClassLoader().getSystemResource("SimpleEcho.xwf"); + URL systemResource = this.getClass().getClassLoader().getSystemResource("SimpleForEach.xwf"); Workflow workflow = new Workflow(WorkflowTestUtils.readWorkflow(systemResource)); - ((InputNode) workflow.getGraph().getNode("input")).setDefaultValue("1"); XBayaConfiguration conf = WorkflowTestUtils.getConfiguration(); AiravataRegistry registry = conf.getJcrComponentRegistry()==null? null:conf.getJcrComponentRegistry().getRegistry(); WorkflowInterpreterConfiguration workflowInterpreterConfiguration = new WorkflowInterpreterConfiguration(workflow, UUID.randomUUID().toString(),conf.getMessageBoxURL(), conf.getBrokerURL(), registry, conf, null,null,null,true);