mirror of https://github.com/django/django.git
Refs #31055 -- Allowed database queries in invalid_models_tests.test_models.FieldNamesTests.
This commit is contained in:
parent
f5ede1cb6d
commit
e8d3088925
|
@ -333,7 +333,8 @@ class IndexesTests(SimpleTestCase):
|
||||||
|
|
||||||
|
|
||||||
@isolate_apps('invalid_models_tests')
|
@isolate_apps('invalid_models_tests')
|
||||||
class FieldNamesTests(SimpleTestCase):
|
class FieldNamesTests(TestCase):
|
||||||
|
databases = {'default', 'other'}
|
||||||
|
|
||||||
def test_ending_with_underscore(self):
|
def test_ending_with_underscore(self):
|
||||||
class Model(models.Model):
|
class Model(models.Model):
|
||||||
|
|
Loading…
Reference in New Issue