mirror of https://github.com/django/django.git
Refs #25176 -- Fixed typo in tests/test_utils/tests.py
This commit is contained in:
parent
0abb06930f
commit
fd81588bc6
|
@ -955,7 +955,7 @@ class TestBadSetUpTestData(TestCase):
|
||||||
@classmethod
|
@classmethod
|
||||||
def setUpClass(cls):
|
def setUpClass(cls):
|
||||||
try:
|
try:
|
||||||
super(TestBadSetupTestData, cls).setUpClass()
|
super(TestBadSetUpTestData, cls).setUpClass()
|
||||||
except cls.MyException:
|
except cls.MyException:
|
||||||
cls._in_atomic_block = connection.in_atomic_block
|
cls._in_atomic_block = connection.in_atomic_block
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue