Add missing setUp call to the text extractor test case.

This commit is contained in:
Roberto Rosario
2017-02-16 22:10:31 -04:00
parent 8c4d53b218
commit a9597c81dd

View File

@@ -52,6 +52,8 @@ class ParserTestCase(BaseTestCase):
@override_settings(OCR_AUTO_OCR=False)
class TextExtractorTestCase(BaseTestCase):
def setUp(self):
super(TextExtractorTestCase, self).setUp()
self.document_type = DocumentType.objects.create(
label=TEST_DOCUMENT_TYPE
)