Update test method name

Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
This commit is contained in:
Roberto Rosario
2019-12-15 23:09:02 -04:00
parent 6c828eaf94
commit ef514d5310

View File

@@ -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),)
)