This commit is contained in:
omri zaher 2025-09-18 21:17:50 +03:00
parent f331f75e12
commit a2a19318fc

View file

@ -14,7 +14,8 @@ class TestBoard:
}
response = requests.post(f"{base_url}/users/login", data=login_data)
print(f"🔑 Login response status: {response.status_code}, body: {response.text}")
print("reposnr_JSON:", response.json())
if response.status_code == 200:
json_response = response.json()
if 'token' in json_response: