Tweaked test added in [16308] so it doesn't fail.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16311 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
06279e454a
commit
2367089392
|
@ -1,5 +1,5 @@
|
||||||
import copy
|
import copy
|
||||||
import unittest
|
from django.utils.unittest import TestCase
|
||||||
|
|
||||||
from django.utils.functional import SimpleLazyObject, empty
|
from django.utils.functional import SimpleLazyObject, empty
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ class _ComplexObject(object):
|
||||||
|
|
||||||
complex_object = lambda: _ComplexObject("joe")
|
complex_object = lambda: _ComplexObject("joe")
|
||||||
|
|
||||||
class TestUtilsSimpleLazyObject(unittest.TestCase):
|
class TestUtilsSimpleLazyObject(TestCase):
|
||||||
"""
|
"""
|
||||||
Tests for SimpleLazyObject
|
Tests for SimpleLazyObject
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue