From 538b66b2385b299b9482fdeaf822b4832e13561c Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 21 Jun 2017 15:26:03 -0400 Subject: [PATCH] Add test document label explicitly. Signed-off-by: Roberto Rosario --- mayan/apps/documents/tests/test_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/documents/tests/test_views.py b/mayan/apps/documents/tests/test_views.py index a40ea03bf4..37481ef752 100644 --- a/mayan/apps/documents/tests/test_views.py +++ b/mayan/apps/documents/tests/test_views.py @@ -45,7 +45,7 @@ class GenericDocumentViewTestCase(GenericViewTestCase): with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( - file_object=file_object + file_object=file_object, label=TEST_SMALL_DOCUMENT_FILENAME ) def tearDown(self):