You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2006/02/27 17:58:35 UTC

svn commit: r381382 - /webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/LargeReturningString.cpp

Author: dicka
Date: Mon Feb 27 08:58:33 2006
New Revision: 381382

URL: http://svn.apache.org/viewcvs?rev=381382&view=rev
Log:
Correcting LargeReturningString service to return the expected lower case letters, rather than the current upper case letters.

Modified:
    webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/LargeReturningString.cpp

Modified: webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/LargeReturningString.cpp
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/LargeReturningString.cpp?rev=381382&r1=381381&r2=381382&view=diff
==============================================================================
--- webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/LargeReturningString.cpp (original)
+++ webservices/axis/trunk/c/tests/auto_build/testcases/server/cpp/LargeReturningString.cpp Mon Feb 27 08:58:33 2006
@@ -53,7 +53,7 @@
 
 	for( int iCount = 0; iCount < Value0; iCount++)
 	{
-		myString[iCount] = iCount % 26 + 'A';
+		myString[iCount] = iCount % 26 + 'a';
 	}
 
 	myString[Value0] = '\0';