OASIS fixes required to make ASM_5015 work - blank string lost for
service1Impl6.java
-------------------------------------------------------------------------------------
Key: TUSCANY-3214
URL: https://issues.apache.org/jira/browse/TUSCANY-3214
Project: Tuscany
Issue Type: Bug
Affects Versions: Java-SCA-2.0
Reporter: Ku Jun Guo
Fix For: Java-SCA-M2
When I ran the ASM_5015_TestCase, the case looks good, but it failed to pass
the test. So I made a check, I found it was caused by service1Impl6, it missed
a blank. Could you help to make a check for this? Thanks!
public String operation1(String input) {
String result = serviceName + " operation1 invoked";
// Call the reference if present
if( reference1 != null ) result =
result.concat(reference1.operation1( input ));
return result;
}
I think it should be:
result = result.concat(" ").concat(reference1.operation1( input ));
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.