change LicenseChoicesTestCase from TestCase to SimpleTestCase

This commit is contained in:
Trent Palmer 2021-04-07 04:29:42 -07:00
parent 1ddc459ed3
commit 12f4a093f6
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
from django.test import TestCase
from django.test import SimpleTestCase
from audio.choices import LICENSE_CHOICES, get_license_info
TEST_LICENSE_CHOICES = (
@ -22,7 +22,7 @@ TEST_LICENSE_INFO = (
)
class LicenseChoicesTestCase(TestCase):
class LicenseChoicesTestCase(SimpleTestCase):
def test_license_choices(self):
self.assertEqual(len(LICENSE_CHOICES), 7)