From 5ba5ce6e0e6823bb61ff5a01e41458b768fa2c5d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C5=81ukasz=20Nowak?= <luke@nexedi.com>
Date: Thu, 25 Jun 2009 14:48:15 +0000
Subject: [PATCH]  - sorted was making this test not testing anything (thanks
 Fabien)

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@27798 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/tests/testBPMCore.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/product/ERP5/tests/testBPMCore.py b/product/ERP5/tests/testBPMCore.py
index cf95dc81cc..6d41da8952 100644
--- a/product/ERP5/tests/testBPMCore.py
+++ b/product/ERP5/tests/testBPMCore.py
@@ -1757,8 +1757,8 @@ class TestBPMTestCases(TestBPMMixin):
     trade_model_line_list = trade_condition.getTradeModelLineComposedList()
 
     # XXX: This is only one good possible sorting
-    self.assertEquals(sorted([q.getRelativeUrl() for q in trade_model_line_list]),
-        sorted([q.getRelativeUrl() for q in [D, E, B, F, G, C, A]]))
+    self.assertEquals([q.getRelativeUrl() for q in trade_model_line_list],
+        [q.getRelativeUrl() for q in [D, E, B, F, G, C, A]])
 
   def test_getAggregatedAmountList(self):
     """
-- 
2.30.9