Skip to content

Commit 56f8341

Browse files
committed
Fixed, build fail
1 parent 21820bf commit 56f8341

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/test_is_paid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def test_is_paid_with_response(iamport):
66
'status': 'paid',
77
'amount': 1000,
88
}
9-
assert True is iamport.is_paid(amount=1000, resposne=mocked_response, merchant_uid='test')
9+
assert True is iamport.is_paid(amount=1000, response=mocked_response, merchant_uid='test')
1010

1111

1212
def test_is_paid_without_response(iamport):

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ envlist = py27, py34, py35, py36, pypy
44
[testenv]
55
passenv = CI TRAVIS TRAVIS_*
66
deps =
7+
pytest-runner
78
pytest
89
flake8
910
collective.checkdocs

0 commit comments

Comments
 (0)