Skip to content

Commit

Permalink
Fix test_exchange_client_credentials_with_basic_auth after merging ra…
Browse files Browse the repository at this point in the history
  • Loading branch information
lipanski committed Jan 31, 2018
1 parent aabede5 commit ceaeeae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ fn test_exchange_client_credentials_with_form_response() {
fn test_exchange_client_credentials_with_basic_auth() {
let mock = mock("POST", "/token")
.match_header("Authorization", "Basic YWFhOmJiYg==") // base64("aaa:bbb")
.match_body("grant_type=client_credentials")
.match_body("grant_type=client_credentials&scope=")
.with_body("access_token=12%2F34&token_type=bearer&scope=read,write")
.create();

Expand Down

0 comments on commit ceaeeae

Please sign in to comment.