From ba841c10f8db430ff62fc1ec9a38774ec70266ca Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sat, 19 Sep 2015 23:37:27 -0400 Subject: [PATCH] Use small sample document for checkout app tests. --- mayan/apps/checkouts/tests/test_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/checkouts/tests/test_models.py b/mayan/apps/checkouts/tests/test_models.py index 77fa1132eb..aaf87bce80 100644 --- a/mayan/apps/checkouts/tests/test_models.py +++ b/mayan/apps/checkouts/tests/test_models.py @@ -35,7 +35,7 @@ class DocumentCheckoutTestCase(TestCase): label=TEST_DOCUMENT_TYPE ) - with open(TEST_DOCUMENT_PATH) as file_object: + with open(TEST_SMALL_DOCUMENT_PATH) as file_object: self.document = self.document_type.new_document( file_object=File(file_object) )