You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2012/09/11 15:01:44 UTC

svn commit: r1383395 - in /subversion/branches/1.6.x-testsuite-apr-hash-order: ./ subversion/bindings/swig/python/tests/wc.py

Author: stsp
Date: Tue Sep 11 13:01:44 2012
New Revision: 1383395

URL: http://svn.apache.org/viewvc?rev=1383395&view=rev
Log:
On the 1.6.x-testsuite-apr-hash-order branch, merge r1292248 from trunk.
Another swig-py tests fix for APR 1.4.6

Modified:
    subversion/branches/1.6.x-testsuite-apr-hash-order/   (props changed)
    subversion/branches/1.6.x-testsuite-apr-hash-order/subversion/bindings/swig/python/tests/wc.py

Propchange: subversion/branches/1.6.x-testsuite-apr-hash-order/
------------------------------------------------------------------------------
  Merged /subversion/trunk:r1292248

Modified: subversion/branches/1.6.x-testsuite-apr-hash-order/subversion/bindings/swig/python/tests/wc.py
URL: http://svn.apache.org/viewvc/subversion/branches/1.6.x-testsuite-apr-hash-order/subversion/bindings/swig/python/tests/wc.py?rev=1383395&r1=1383394&r2=1383395&view=diff
==============================================================================
--- subversion/branches/1.6.x-testsuite-apr-hash-order/subversion/bindings/swig/python/tests/wc.py (original)
+++ subversion/branches/1.6.x-testsuite-apr-hash-order/subversion/bindings/swig/python/tests/wc.py Tue Sep 11 13:01:44 2012
@@ -193,8 +193,9 @@ class SubversionWorkingCopyTestCase(unit
 
   def test_entries_read(self):
       entries = wc.entries_read(self.wc, True)
-
-      self.assertEqual(['', 'tags', 'branches', 'trunk'], list(entries.keys()))
+      keys = list(entries.keys())
+      keys.sort()
+      self.assertEqual(['', 'branches', 'tags', 'trunk'], keys)
 
   def test_get_ignores(self):
       self.assert_(isinstance(wc.get_ignores(None, self.wc), list))