From ef514d531025eace678f77d74916362adfdc1612 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 15 Dec 2019 23:09:02 -0400 Subject: [PATCH] Update test method name Signed-off-by: Roberto Rosario --- mayan/apps/documents/tests/test_models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mayan/apps/documents/tests/test_models.py b/mayan/apps/documents/tests/test_models.py index 0a1ed612fd..f1bb6bc7a0 100644 --- a/mayan/apps/documents/tests/test_models.py +++ b/mayan/apps/documents/tests/test_models.py @@ -136,7 +136,7 @@ class DocumentTestCase(GenericDocumentTestCase): class PDFAlternateRotationTestCase(GenericDocumentTestCase): test_document_filename = TEST_PDF_ROTATE_ALTERNATE_LABEL - def test_indirect_rotate(self): + def test_rotate(self): self.assertQuerysetEqual( qs=Document.objects.all(), values=(repr(self.test_document),) ) @@ -151,7 +151,7 @@ class PDFAlternateRotationTestCase(GenericDocumentTestCase): class PDFIndirectRotationTestCase(GenericDocumentTestCase): test_document_filename = TEST_PDF_INDIRECT_ROTATE_LABEL - def test_alternate_rotate(self): + def test_rotate(self): self.assertQuerysetEqual( qs=Document.objects.all(), values=(repr(self.test_document),) )