From 33641a89c7def764c00dcd7d1891bad691032d40 Mon Sep 17 00:00:00 2001 From: Yasir Shariff Date: Sun, 28 Jan 2024 18:32:51 +0530 Subject: [PATCH] fix: express request tests --- docs/client/express_request.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/client/express_request.md b/docs/client/express_request.md index 6f4a05ef5..e9b265c93 100644 --- a/docs/client/express_request.md +++ b/docs/client/express_request.md @@ -29,11 +29,11 @@ async fn main() -> Result<(), Box>{ .business_short_code("174379") .phone_number("254708374149") .party_a("600584") - .party_b("600000") + .party_b("174379") .amount(500) .try_callback_url("https://test.example.com/api")? .account_ref("Test") - .transaction_type(mpesa::CommandId::CustomerPayBillOnline) // Optional, defaults to `CommandId::CustomerPayBillOnline` + .transaction_type(crate::CommandId::CustomerPayBillOnline) // Optional, defaults to `CommandId::CustomerPayBillOnline` .transaction_desc("Description") // Optional, defaults to "None" .build()? .send()