FIX: dav_base generic tests: since a simple GET of a view UrlTestCase must allow db queries and thus

must be TestCase instead of SimpleTestCase.
This commit is contained in:
2019-06-05 16:15:11 +02:00
parent 939828a32f
commit d63c43eacd

View File

@@ -174,7 +174,7 @@ class Url(object):
self.follow = kwargs.get('follow', False)
class UrlsTestCase(SimpleTestCase):
class UrlsTestCase(TestCase):
urls = ()
def test_locations(self):