Skip to content

Commit

Permalink
Merge pull request #1 from DhavalGojiya/fix/typo-billing-email-error
Browse files Browse the repository at this point in the history
[FIXED] -- Fix typo in value error message for missing billing email …
  • Loading branch information
kdpisda authored Sep 25, 2024
2 parents 0f9c093 + 47da088 commit 149bf06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pay_ccavenue/ccavenue.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def validate_request_body(self) -> None:
self.__form_data["billing_email"] is None
or isinstance(self.__form_data["billing_email"], str) is False
):
raise ValueError("You must provide a billing tel for CCAvenue.")
raise ValueError("You must provide a billing email for CCAvenue.")

def parse_request_body(self, request_body: dict) -> str:
"""
Expand Down

0 comments on commit 149bf06

Please sign in to comment.