mirror of
https://github.com/django/django.git
synced 2025-07-04 17:59:13 +00:00
[1.2.X] Corrected a test failure under MySQL.
Backport of r13976 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13977 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
36ce5d0b3a
commit
1429a3dbba
@ -238,15 +238,15 @@ class TestFixtures(TestCase):
|
||||
)
|
||||
articles = Article.objects.exclude(id=9)
|
||||
self.assertEqual(
|
||||
articles.values_list('id', flat=True).__repr__(),
|
||||
"[1, 2, 3, 4, 5, 6, 7, 8]"
|
||||
list(articles.values_list('id', flat=True)),
|
||||
[1, 2, 3, 4, 5, 6, 7, 8]
|
||||
)
|
||||
# Just for good measure, run the same query again.
|
||||
# Under the influence of ticket #7572, this will
|
||||
# give a different result to the previous call.
|
||||
self.assertEqual(
|
||||
articles.values_list('id', flat=True).__repr__(),
|
||||
"[1, 2, 3, 4, 5, 6, 7, 8]"
|
||||
list(articles.values_list('id', flat=True)),
|
||||
[1, 2, 3, 4, 5, 6, 7, 8]
|
||||
)
|
||||
|
||||
def test_field_value_coerce(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user