Skip to content

Commit 43b47a8

Browse files
committed
Fixed #12948. Removed a test dependency on the formatting of Decimals. Thanks, coleifer.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12551 bcc190cf-cafb-0310-a4f2-bffc1f526a37
1 parent ea3853e commit 43b47a8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/modeltests/aggregation/models.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,8 @@ def __unicode__(self):
362362
>>> Book.objects.filter(pk=1).annotate(mean_age=Avg('authors__age')).values_list('mean_age', flat=True)
363363
[34.5]
364364
365-
>>> Book.objects.values_list('price').annotate(count=Count('price')).order_by('-count', 'price')
366-
[(Decimal('29.69'), 2), (Decimal('23.09'), 1), (Decimal('30'), 1), (Decimal('75'), 1), (Decimal('82.8'), 1)]
365+
>>> qs = Book.objects.values_list('price').annotate(count=Count('price')).order_by('-count', 'price')
366+
>>> list(qs) == [(Decimal('29.69'), 2), (Decimal('23.09'), 1), (Decimal('30'), 1), (Decimal('75'), 1), (Decimal('82.8'), 1)]
367+
True
367368
368369
"""}

0 commit comments

Comments
 (0)