diff --git a/bgg_connection.py b/bgg_connection.py index 02a02be..422eb6d 100644 --- a/bgg_connection.py +++ b/bgg_connection.py @@ -72,6 +72,6 @@ def get_authenticated_bgg_session(username: str, password: str) -> requests.Sess authenticated_session = requests.Session() login_response = authenticated_session.post(login_url, json=post_data) - print(login_response.status_code) + assert login_response.status_code == 204 return authenticated_session \ No newline at end of file