From 974fa8e210f4b19130480b8a71a124a2bf0a0c20 Mon Sep 17 00:00:00 2001 From: Michael Price Date: Fri, 2 Mar 2018 02:56:07 -0400 Subject: [PATCH] Fix super class name. Signed-off-by: Michael Price --- mayan/apps/document_signatures/tests/test_links.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayan/apps/document_signatures/tests/test_links.py b/mayan/apps/document_signatures/tests/test_links.py index dbd28f6752..bfe43b0e0d 100644 --- a/mayan/apps/document_signatures/tests/test_links.py +++ b/mayan/apps/document_signatures/tests/test_links.py @@ -20,7 +20,7 @@ from .literals import TEST_SIGNATURE_FILE_PATH, TEST_SIGNED_DOCUMENT_PATH class DocumentSignatureLinksTestCase(GenericDocumentViewTestCase): def setUp(self): - super(DocumentSignaturesTestCase, self).setUp() + super(DocumentSignatureLinksTestCase, self).setUp() self.login_user() def test_document_version_signature_detail_link_no_permission(self):