diff --git a/users/tests.py b/users/tests.py index 0e924a1..892a6cc 100644 --- a/users/tests.py +++ b/users/tests.py @@ -9,7 +9,7 @@ from core.models import Image, Pin from .models import User -def mock_requests_get(url): +def mock_requests_get(url, headers=None): response = mock.Mock(content=open('logo.png', 'rb').read()) return response