diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-06-11 07:31:10 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-06-11 07:31:10 +0000 |
commit | bde2166d8e7ec269aed879749f6e9649e8dccdb4 (patch) | |
tree | 7568797dc32a7560ebf786b6eb92cfdf38a0fc4e /java/sca/itest/distribution | |
parent | f826ab59e7e18cbae6f27b1f139354ca15e87bd7 (diff) |
Correct bpel webapp itest to use the correct context path
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@783659 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/itest/distribution')
-rw-r--r-- | java/sca/itest/distribution/webapp-helloworld-bpel/src/test/java/itest/HelloworldTestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/sca/itest/distribution/webapp-helloworld-bpel/src/test/java/itest/HelloworldTestCase.java b/java/sca/itest/distribution/webapp-helloworld-bpel/src/test/java/itest/HelloworldTestCase.java index 7bcd590cf0..5305695987 100644 --- a/java/sca/itest/distribution/webapp-helloworld-bpel/src/test/java/itest/HelloworldTestCase.java +++ b/java/sca/itest/distribution/webapp-helloworld-bpel/src/test/java/itest/HelloworldTestCase.java @@ -38,7 +38,7 @@ public class HelloworldTestCase { @Test
public void testA() throws FailingHttpStatusCodeException, MalformedURLException, IOException {
- HtmlPage page = (HtmlPage)new WebClient().getPage("http://localhost:8085/helloworld-jsp");
+ HtmlPage page = (HtmlPage)new WebClient().getPage("http://localhost:8085/helloworld-bpel");
Iterator<?> ss = page.getAllHtmlChildElements();
ss.next();
ss.next();
|