Fix compile failure
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/0a0b9dee Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/0a0b9dee Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/0a0b9dee Branch: refs/heads/2.7.x-fixes Commit: 0a0b9deec75db92a58ed6743b91efc4d3870fea7 Parents: c518d5b Author: Daniel Kulp <[email protected]> Authored: Mon Jun 30 13:27:44 2014 -0400 Committer: Daniel Kulp <[email protected]> Committed: Mon Jun 30 13:27:44 2014 -0400 ---------------------------------------------------------------------- .../test/java/org/apache/cxf/systest/ws/cache/CachingTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/0a0b9dee/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/cache/CachingTest.java ---------------------------------------------------------------------- diff --git a/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/cache/CachingTest.java b/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/cache/CachingTest.java index d3c73e8..87030c3 100644 --- a/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/cache/CachingTest.java +++ b/systests/ws-security/src/test/java/org/apache/cxf/systest/ws/cache/CachingTest.java @@ -96,7 +96,7 @@ public class CachingTest extends AbstractBusClientServerTestBase { // Second invocation DoubleItPortType port2 = service.getPort(portQName, DoubleItPortType.class); - updateAddressPort(port2, test.getPort()); + updateAddressPort(port2, PORT); port2.doubleIt(35); @@ -159,7 +159,7 @@ public class CachingTest extends AbstractBusClientServerTestBase { // Second invocation DoubleItPortType port2 = service.getPort(portQName, DoubleItPortType.class); - updateAddressPort(port2, test.getPort()); + updateAddressPort(port2, PORT); ((BindingProvider)port2).getRequestContext().put( SecurityConstants.CACHE_IDENTIFIER, "proxy2"
