Skip to content

Commit

Permalink
Refs #35. Fix the failing test caused by the Amazon FPS rewrite for v…
Browse files Browse the repository at this point in the history
…ersion 2.5.2.
  • Loading branch information
theju committed Aug 13, 2012
1 parent 10022d2 commit d0f1065
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions billing/integrations/amazon_fps_integration.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ def link_url(self):
tmp_fields.pop("aws_access_key", None) tmp_fields.pop("aws_access_key", None)
tmp_fields.pop("aws_secret_access_key", None) tmp_fields.pop("aws_secret_access_key", None)
tmp_fields.pop("paymentPage", None) tmp_fields.pop("paymentPage", None)
return self.fps_connection.make_url(tmp_fields.pop("returnURL"), return self.fps_connection.cbui_url(returnURL=tmp_fields.pop("returnURL"),
tmp_fields.pop("paymentReason"), paymentReason=tmp_fields.pop("paymentReason"),
tmp_fields.pop("pipelineName"), pipelineName=tmp_fields.pop("pipelineName"),
str(tmp_fields.pop("transactionAmount")), transactionAmount=str(tmp_fields.pop("transactionAmount")),
**tmp_fields) **tmp_fields)


def purchase(self, amount, options=None): def purchase(self, amount, options=None):
Expand Down

0 comments on commit d0f1065

Please sign in to comment.