summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/samples/binding-echo/src/test/java/echo/EchoBindingTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-1.x/samples/binding-echo/src/test/java/echo/EchoBindingTestCase.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");
}
}