Update all test for 100% passed (348 tests).

This commit is contained in:
Roberto Rosario
2017-01-14 17:43:55 -04:00
parent 6d54ecc10a
commit f5660cd629
6 changed files with 44 additions and 106 deletions

View File

@@ -1,6 +1,5 @@
from __future__ import unicode_literals
from django.core.files.base import File
from django.test import override_settings
from common.tests import BaseTestCase
@@ -26,7 +25,7 @@ class IndexTestCase(BaseTestCase):
with open(TEST_SMALL_DOCUMENT_PATH) as file_object:
self.document = self.document_type.new_document(
file_object=File(file_object)
file_object=file_object
)
def tearDown(self):