From 12f4a093f66aed10af220fa0f6414d9b24d7bdfd Mon Sep 17 00:00:00 2001 From: Trent Palmer Date: Wed, 7 Apr 2021 04:29:42 -0700 Subject: [PATCH] change LicenseChoicesTestCase from TestCase to SimpleTestCase --- audio/tests/test_licensechoices.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/audio/tests/test_licensechoices.py b/audio/tests/test_licensechoices.py index 1c7b3a6..f5bd432 100644 --- a/audio/tests/test_licensechoices.py +++ b/audio/tests/test_licensechoices.py @@ -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)