Skip to content

Commit

Permalink
Maintain consistency with auth response in helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
c12i committed Nov 14, 2023
1 parent 06ecc38 commit 84448a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/mpesa-rust/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ macro_rules! get_mpesa_client {
.and(query_param("grant_type", "client_credentials"))
.respond_with(ResponseTemplate::new(200).set_body_json(json!({
"access_token": "dummy_access_token",
"expires_in": 3600
"expires_in": "3600"
})))
.mount(&server)
.await;
Expand Down

0 comments on commit 84448a4

Please sign in to comment.