You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by pa...@apache.org on 2011/10/31 21:11:08 UTC

svn commit: r1195648 - /incubator/airavata/trunk/modules/gfac-core/src/test/java/org/apache/airavata/core/gfac/services/impl/PropertiesBasedServiceImplTest.java

Author: patanachai
Date: Mon Oct 31 20:11:07 2011
New Revision: 1195648

URL: http://svn.apache.org/viewvc?rev=1195648&view=rev
Log:
Fix testcase error

Modified:
    incubator/airavata/trunk/modules/gfac-core/src/test/java/org/apache/airavata/core/gfac/services/impl/PropertiesBasedServiceImplTest.java

Modified: incubator/airavata/trunk/modules/gfac-core/src/test/java/org/apache/airavata/core/gfac/services/impl/PropertiesBasedServiceImplTest.java
URL: http://svn.apache.org/viewvc/incubator/airavata/trunk/modules/gfac-core/src/test/java/org/apache/airavata/core/gfac/services/impl/PropertiesBasedServiceImplTest.java?rev=1195648&r1=1195647&r2=1195648&view=diff
==============================================================================
--- incubator/airavata/trunk/modules/gfac-core/src/test/java/org/apache/airavata/core/gfac/services/impl/PropertiesBasedServiceImplTest.java (original)
+++ incubator/airavata/trunk/modules/gfac-core/src/test/java/org/apache/airavata/core/gfac/services/impl/PropertiesBasedServiceImplTest.java Mon Oct 31 20:11:07 2011
@@ -94,7 +94,7 @@ public class PropertiesBasedServiceImplT
 		List<OutputParameterType> outputList = new ArrayList<OutputParameterType>();
 		OutputParameterType output = OutputParameterType.Factory.newInstance();
 		output.setParameterName("echo_output");
-		input.setParameterType(StringParameterType.Factory.newInstance());		
+		output.setParameterType(StringParameterType.Factory.newInstance());		
 		outputList.add(output);
 		OutputParameterType[] outputParamList = outputList
 				.toArray(new OutputParameterType[outputList.size()]);