Skip to content
This repository has been archived by the owner on May 12, 2020. It is now read-only.

Commit

Permalink
Merge pull request #117 from rickhanlonii/rh-fix-spelling
Browse files Browse the repository at this point in the history
Fix variable name typo in payment test
  • Loading branch information
bluk committed Jan 14, 2016
2 parents 2dd54e4 + 1b604c4 commit 20dee25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/functional_tests/payments_test.py
Expand Up @@ -36,9 +36,9 @@ def test_validation(self):
self.assertEqual(payment.create(), False)

def test_all(self):
payment_histroy = paypal.Payment.all({"count": 1})
self.assertEqual(payment_histroy.count, 1)
self.assertEqual(payment_histroy.payments[0].__class__, paypal.Payment)
payment_history = paypal.Payment.all({"count": 1})
self.assertEqual(payment_history.count, 1)
self.assertEqual(payment_history.payments[0].__class__, paypal.Payment)

def test_find(self):
payment_history = paypal.Payment.all({"count": 1})
Expand Down

0 comments on commit 20dee25

Please sign in to comment.