Author: PaulM
Date: 2010-07-02 12:53:09 -0500 (Fri, 02 Jul 2010)
New Revision: 13414

Modified:
   django/branches/soc2010/test-refactor/tests/modeltests/expressions/tests.py
Log:
[soc2010/test-refactor] update expressions test to use unittest2 
assertItemsEqual


Modified: 
django/branches/soc2010/test-refactor/tests/modeltests/expressions/tests.py
===================================================================
--- django/branches/soc2010/test-refactor/tests/modeltests/expressions/tests.py 
2010-07-02 17:51:12 UTC (rev 13413)
+++ django/branches/soc2010/test-refactor/tests/modeltests/expressions/tests.py 
2010-07-02 17:53:09 UTC (rev 13414)
@@ -8,10 +8,6 @@
 class ExpressionsTestCase(TestCase):
     fixtures = ['f_expression_testdata.json']
 
-    def assertItemsEqual(self, a, b):
-        #fixme, replace with unittest2 function
-        return self.assertEqual(sorted(a), sorted(b))
-
     def test_basic_f_expression(self):
         company_query = Company.objects.values('name','num_employees',
                                                'num_chairs'

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to