Skip to content

Commit 5e9ac00

Browse files
committedAug 28, 2024·
fix: faiing test after merging PR
1 parent 122db09 commit 5e9ac00

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎core/pactbroker/src/test/groovy/au/com/dius/pact/core/pactbroker/HalClientSpec.groovy

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ class HalClientSpec extends Specification {
7979
client.httpClient.credentialsProvider instanceof SystemDefaultCredentialsProvider
8080
client.httpContext != null
8181
authScheme instanceof BasicScheme
82-
authScheme.username == '1'
83-
authScheme.password == ['2']
82+
authScheme.credentials.principal.name == '1'
83+
authScheme.credentials.password == ['2']
8484
}
8585

8686
def 'retry strategy is added to execution chain of client'() {

0 commit comments

Comments
 (0)
Please sign in to comment.