summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaul McMillan <Paul@McMillan.ws>2010-07-02 17:53:09 +0000
committerPaul McMillan <Paul@McMillan.ws>2010-07-02 17:53:09 +0000
commitdfd3da2853e7fef61ed40f5f903f8d97085cb953 (patch)
tree9e0852d4b566c5a1df745ef50ca69fb610931ba8 /tests
parentc298937c9434752aa961888e680bfb638230ec62 (diff)
[soc2010/test-refactor] update expressions test to use unittest2 assertItemsEqual
git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2010/test-refactor@13414 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/modeltests/expressions/tests.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/modeltests/expressions/tests.py b/tests/modeltests/expressions/tests.py
index f11224d690..e47df57b29 100644
--- a/tests/modeltests/expressions/tests.py
+++ b/tests/modeltests/expressions/tests.py
@@ -8,10 +8,6 @@ from models import Employee, Company
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'