summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/binding-echo/src/test/java
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-06-13 18:54:32 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2009-06-13 18:54:32 +0000
commit31c54dc253622bed21ed5c4ee355f07c152bf1d2 (patch)
tree6e4065eb1d83d29a5811375eeec06636205ddf5b /branches/sca-java-1.x/samples/binding-echo/src/test/java
parent9aa6e3d0558327677d6a072633db47c35ef7d0c0 (diff)
Format the code
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@784450 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/samples/binding-echo/src/test/java')
-rw-r--r--branches/sca-java-1.x/samples/binding-echo/src/test/java/echo/EchoBindingTestCase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/branches/sca-java-1.x/samples/binding-echo/src/test/java/echo/EchoBindingTestCase.java b/branches/sca-java-1.x/samples/binding-echo/src/test/java/echo/EchoBindingTestCase.java
index 2d29aed238..85c892cd0a 100644
--- a/branches/sca-java-1.x/samples/binding-echo/src/test/java/echo/EchoBindingTestCase.java
+++ b/branches/sca-java-1.x/samples/binding-echo/src/test/java/echo/EchoBindingTestCase.java
@@ -31,7 +31,7 @@ public class EchoBindingTestCase extends TestCase {
@Override
protected void setUp() throws Exception {
- scaDomain = SCADomain.newInstance("EchoBinding.composite");
+ scaDomain = SCADomain.newInstance("EchoBinding.composite");
}
@Override
@@ -50,7 +50,7 @@ public class EchoBindingTestCase extends TestCase {
public void testService() throws Exception {
// Call the echo server. This will dispatch the call to a service with an
// echo binding. The echo binding will pass the call to the echo component.
- String echoString = (String) EchoServer.getServer().call("http://example.com/server", new Object[] {"bar"});
+ String echoString = (String)EchoServer.getServer().call("http://example.com/server", new Object[] {"bar"});
assertEquals(echoString, "bar");
}
}