From 2d7dc91928123d7b41fd36e22ba61c72bf831ff5 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 22 Dec 2016 03:36:15 -0400 Subject: [PATCH] Fix path of test document for the document signatures app. --- mayan/apps/document_signatures/tests/literals.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mayan/apps/document_signatures/tests/literals.py b/mayan/apps/document_signatures/tests/literals.py index 1cda72593a..040366be1e 100644 --- a/mayan/apps/document_signatures/tests/literals.py +++ b/mayan/apps/document_signatures/tests/literals.py @@ -5,15 +5,15 @@ import os from django.conf import settings TEST_SIGNED_DOCUMENT_PATH = os.path.join( - settings.BASE_DIR, 'apps', 'documents', 'tests', 'contrib', + settings.BASE_DIR, 'apps', 'document_signatures', 'tests', 'contrib', 'sample_documents', 'mayan_11_1.pdf.gpg' ) TEST_SIGNATURE_FILE_PATH = os.path.join( - settings.BASE_DIR, 'apps', 'documents', 'tests', 'contrib', + settings.BASE_DIR, 'apps', 'document_signatures', 'tests', 'contrib', 'sample_documents', 'mayan_11_1.pdf.sig' ) TEST_KEY_FILE = os.path.join( - settings.BASE_DIR, 'apps', 'documents', 'tests', 'contrib', + settings.BASE_DIR, 'apps', 'document_signatures', 'tests', 'contrib', 'sample_documents', 'key0x5F3F7F75D210724D.asc' ) TEST_KEY_ID = '5F3F7F75D210724D'