reta commented on a change in pull request #703:
URL: https://github.com/apache/cxf/pull/703#discussion_r499179689
##########
File path:
systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java
##########
@@ -840,7 +840,7 @@ public void testCaching() throws Exception {
assertTrue(cacheControl.toString().contains("max-age=100000"));
// Now make a second call. This should be retrieved from the client's
cache
- target.request().get();
+ response = target.request().get();
Review comment:
👍
##########
File path:
systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerBookTest.java
##########
@@ -883,7 +883,7 @@ public void testCachingExpires() throws Exception {
// Now make a second call. The value in the cache will have expired, so
// it should call the service again
Thread.sleep(1500L);
- target.request().get();
+ response = target.request().get();
Review comment:
👍
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]