Skip to content

Commit

Permalink
Upgrade stripe-mock
Browse files Browse the repository at this point in the history
  • Loading branch information
ob-stripe committed Sep 22, 2018
1 parent 8adc8e6 commit dfc50bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ cache:
env:
global:
# If changing this number, please also change it in `tests/conftest.py`.
- STRIPE_MOCK_VERSION=0.30.0
- STRIPE_MOCK_VERSION=0.32.0

before_install:
# Unpack and start stripe-mock so that the test suite can talk to it
Expand Down
2 changes: 1 addition & 1 deletion tests/api_resources/issuing/test_dispute.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class TestDispute(object):
def test_is_creatable(self, request_mock):
resource = stripe.issuing.Dispute.create(
reason='fraudulent',
transaction='ipi_123'
disputed_transaction='ipi_123'
)
request_mock.assert_requested(
'post',
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from tests.request_mock import RequestMock


MOCK_MINIMUM_VERSION = '0.30.0'
MOCK_MINIMUM_VERSION = '0.32.0'
MOCK_PORT = os.environ.get('STRIPE_MOCK_PORT', 12111)


Expand Down

0 comments on commit dfc50bc

Please sign in to comment.