Fixes for changes in SPR-15657

Fixes gh-4408
This commit is contained in:
Rob Winch
2017-06-20 16:20:22 -05:00
parent 37011720c9
commit 8130965259
7 changed files with 94 additions and 0 deletions

View File

@@ -62,7 +62,9 @@ public class WebClientOAuth2PocTests {
this.server.enqueue(new MockResponse().setResponseCode(200).setBody("OK"));
ClientResponse response = this.webClient
.mutate()
.filter(basicIfNeeded("rob", "rob"))
.build()
.get()
.uri("/")
.exchange()
@@ -80,7 +82,9 @@ public class WebClientOAuth2PocTests {
this.server.enqueue(new MockResponse().setResponseCode(200).setBody("OK"));
ClientResponse response = this.webClient
.mutate()
.filter(basicIfNeeded("rob", "rob"))
.build()
.get()
.uri("/")
.exchange()