diff options
author | Ram Krishna Verma <ram.krishna.verma@est.tech> | 2019-07-01 15:21:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-01 15:21:39 +0000 |
commit | 3e60ff607e30e020d5909bf23bf571504e635c23 (patch) | |
tree | 6bd79f227891bf13ec3a5c7b03c8546254771fe3 /examples/examples-onap-bbs/src/test | |
parent | 5052634e60545f5b483660700d47eb4fff5d0d38 (diff) | |
parent | f08984b16abf954b7b351f21a3822e21d9d4f7c2 (diff) |
Merge "Fix issues from Checkstyle reviews"
Diffstat (limited to 'examples/examples-onap-bbs/src/test')
-rw-r--r-- | examples/examples-onap-bbs/src/test/java/org/onap/policy/apex/examples/bbs/WebClientTest.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/examples-onap-bbs/src/test/java/org/onap/policy/apex/examples/bbs/WebClientTest.java b/examples/examples-onap-bbs/src/test/java/org/onap/policy/apex/examples/bbs/WebClientTest.java index 2ff9435b2..e7bba5905 100644 --- a/examples/examples-onap-bbs/src/test/java/org/onap/policy/apex/examples/bbs/WebClientTest.java +++ b/examples/examples-onap-bbs/src/test/java/org/onap/policy/apex/examples/bbs/WebClientTest.java @@ -53,8 +53,8 @@ public class WebClientTest { @Test public void httpsRequest() { WebClient cl = new WebClient(); - String result = cl.httpRequest("https://some.random.url/data", "POST", null, "admin", "admin", - "application/json", true); + String result = + cl.httpRequest("https://some.random.url/data", "POST", null, "admin", "admin", "application/json"); assertNotNull(result); } @@ -62,7 +62,7 @@ public class WebClientTest { public void httpRequest() { WebClient cl = new WebClient(); String result = - cl.httpRequest("http://some.random.url/data", "GET", null, "admin", "admin", "application/json", false); + cl.httpRequest("http://some.random.url/data", "GET", null, "admin", "admin", "application/json"); assertNotNull(result); } |