mirror of
https://github.com/pinry/pinry.git
synced 2025-11-13 16:45:41 +01:00
Open binary files in the binary mode
Make sure that we are using binary mode to read binary files like images, this Fixes #20
This commit is contained in:
@@ -19,7 +19,7 @@ def filter_generator_for(size):
|
||||
|
||||
|
||||
def mock_requests_get(url):
|
||||
response = mock.Mock(content=open('logo.png').read())
|
||||
response = mock.Mock(content=open('logo.png', 'rb').read())
|
||||
return response
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
from django.conf import settings
|
||||
from django.contrib.auth.models import Permission
|
||||
from django.core.files import File
|
||||
from django.core.files.images import ImageFile
|
||||
from django.db.models.query import QuerySet
|
||||
from django.test import TestCase
|
||||
|
||||
@@ -33,7 +33,7 @@ class TagFactory(factory.Factory):
|
||||
|
||||
|
||||
class ImageFactory(factory.Factory):
|
||||
image = factory.LazyAttribute(lambda a: File(open(TEST_IMAGE_PATH)))
|
||||
image = factory.LazyAttribute(lambda a: ImageFile(open(TEST_IMAGE_PATH, 'rb')))
|
||||
|
||||
|
||||
class PinFactory(factory.Factory):
|
||||
|
||||
Reference in New Issue
Block a user