diff --git a/tests/auth/pretalx.py b/tests/auth/pretalx.py index 56146836..52489791 100644 --- a/tests/auth/pretalx.py +++ b/tests/auth/pretalx.py @@ -6,7 +6,7 @@ # api token stored to env pretalx_token # https://pretalx.northbaypython.org/nbpy-2023/me/ -# I should seee "email" in the keys. +# I should see "email" in the keys. import os @@ -14,7 +14,9 @@ from pprint import pprint -url="https://pretalx.northbaypython.org/api/events/nbpy-2023/speakers/" +# url="https://pretalx.northbaypython.org/api/events/nbpy-2023/speakers/" +# url="https://pretalx.com/api/events/pyohio-2024/talks/" +url="https://pretalx.com/api/events/pyohio-2024/speakers/" api_token=os.getenv('pretalx_token') headers = {'Authorization': f'Token {api_token}'}