Typo in class name.

This commit is contained in:
Marcus Scholz 2020-09-11 19:32:07 +02:00
parent f5bf642cd6
commit f49581259e

View File

@ -14,7 +14,7 @@ def mock_voucher():
)
class VoucheTestCase(ModelTestCase, TestCase):
class VoucherTestCase(ModelTestCase, TestCase):
model_name = 'Voucher'
def setUp(self):
@ -48,4 +48,4 @@ class VoucheTestCase(ModelTestCase, TestCase):
msg='Expecting %s.__str__ to contain the voucher code' % (
self.model_name
)
)
)