Skip to content
Snippets Groups Projects
Unverified Commit 4d2ca166 authored by Awais Qureshi's avatar Awais Qureshi Committed by GitHub
Browse files

Merge pull request #21557 from edx/awais786/BOM-169

BOM-169
parents 66124234 e7712e0c
No related merge requests found
......@@ -77,7 +77,7 @@ class PaymentFakeView(View):
Accepts one POST param "status" that can be either "success"
or "failure".
"""
new_status = request.body
new_status = request.body.decode('utf-8')
if new_status not in ["success", "failure", "decline"]:
return HttpResponseBadRequest()
......
......@@ -57,7 +57,7 @@ class PaymentFakeViewTest(TestCase):
# Expect that we were served the payment page
# (not the error page)
self.assertIn("Payment Form", resp.content)
self.assertIn("Payment Form", resp.content.decode('utf-8'))
def test_rejects_invalid_signature(self):
......@@ -74,7 +74,7 @@ class PaymentFakeViewTest(TestCase):
)
# Expect that we got an error
self.assertIn("Error", resp.content)
self.assertIn("Error", resp.content.decode('utf-8'))
def test_sends_valid_signature(self):
......@@ -95,7 +95,6 @@ class PaymentFakeViewTest(TestCase):
# Generate shoppingcart signatures
post_params = sign(self.client_post_params)
# Configure the view to declined payments
resp = self.client.put(
'/shoppingcart/payment_fake',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment