# HG changeset patch # User Aurelien Campeas # Date 1373561009 -7200 # Node ID 7db0c75acf1c0f99253a777e84696acc2d3735dd # Parent 7a6ea34687650439e0ac009abbdc5c87fa35de2e [test] makes fti test order-agnostic (closes #3005633) diff -r 7a6ea3468765 -r 7db0c75acf1c test/unittest_entity.py --- a/test/unittest_entity.py Thu Jul 11 17:16:49 2013 +0200 +++ b/test/unittest_entity.py Thu Jul 11 18:43:29 2013 +0200 @@ -643,8 +643,10 @@ e.cw_attr_cache['data_format'] = 'text/html' e.cw_attr_cache['data_encoding'] = 'ascii' e._cw.transaction_data = {} # XXX req should be a session - self.assertEqual(e.cw_adapt_to('IFTIndexable').get_words(), - {'C': ['an', 'html', 'file', 'du', 'html', 'some', 'data']}) + words = e.cw_adapt_to('IFTIndexable').get_words() + words['C'].sort() + self.assertEqual({'C': sorted(['an', 'html', 'file', 'du', 'html', 'some', 'data'])}, + words) def test_nonregr_relation_cache(self):