From 8dcede0b3942939b376ea64f0a66e43219c9d6a4 Mon Sep 17 00:00:00 2001 From: Daniel Greenfeld Date: Mon, 10 Aug 2015 16:55:25 -0700 Subject: [PATCH] Fix for breaking API changed --- README.rst | 2 +- tests/integration/test_events.py | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index b1ed6b7..7980d8c 100644 --- a/README.rst +++ b/README.rst @@ -96,7 +96,7 @@ Versioning Because this client interacts with Eventbrite's third API (a.k.a. APIv3), we are tying our release numbers against it in a modified-semantic system: * 3.x.x where '3' matches the API version. This will not change until Eventbrite releases a new API version. -* * x.0.x where '0' is increased any time there is a significant change to the API that possibly breaks backwards compatibility +* x.0.x where '0' is increased any time there is a significant change to the API that possibly breaks backwards compatibility * x.x.1 where '1' is increased on any release that does not break backwards comptability (small, new features, enhancements, bugfixes) .. _requests: https://pypi.python.org/pypi/requests diff --git a/tests/integration/test_events.py b/tests/integration/test_events.py index 3207749..e3b3ebe 100644 --- a/tests/integration/test_events.py +++ b/tests/integration/test_events.py @@ -101,10 +101,7 @@ def _get_ticket_data(self): 'ticket_class.name': 'client_test_ticket_{0}'.format(datetime.now()), 'ticket_class.description': 'Python API Client testing', 'ticket_class.quantity_total': 100, - 'ticket_class.cost': { - "currency": 'USD', - 'value': 200, - } + 'ticket_class.cost': 'USD,4500' } def _get_event_data(self, event_name='client_test_{0}'.format(datetime.now())):