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 2014/12/20 01:20:00 UTC

svn commit: r1646905 - /subversion/trunk/subversion/bindings/swig/python/tests/repository.py

Author: stilor
Date: Sat Dec 20 00:20:00 2014
New Revision: 1646905

URL: http://svn.apache.org/r1646905
Log:
* repository.py: Use assertEqual() instead of assertListEqual
  (which is only available in Python 2.7+)

Modified:
    subversion/trunk/subversion/bindings/swig/python/tests/repository.py

Modified: subversion/trunk/subversion/bindings/swig/python/tests/repository.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/python/tests/repository.py?rev=1646905&r1=1646904&r2=1646905&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/swig/python/tests/repository.py (original)
+++ subversion/trunk/subversion/bindings/swig/python/tests/repository.py Sat Dec 20 00:20:00 2014
@@ -229,7 +229,7 @@ class SubversionRepositoryTestCase(unitt
         ]
     # Compare only the first X nodes described in the expected list - otherwise
     # the comparison list gets too long.
-    self.assertListEqual(dsp.ops[:len(expected_list)], expected_list)
+    self.assertEqual(dsp.ops[:len(expected_list)], expected_list)
 
   def test_get_logs(self):
     """Test scope of get_logs callbacks"""



RE: svn commit: r1646905 - /subversion/trunk/subversion/bindings/swig/python/tests/repository.py

Posted by Bert Huijben <be...@qqmail.nl>.

> -----Original Message-----
> From: stilor@apache.org [mailto:stilor@apache.org]
> Sent: zaterdag 20 december 2014 01:20
> To: commits@subversion.apache.org
> Subject: svn commit: r1646905 -
> /subversion/trunk/subversion/bindings/swig/python/tests/repository.py
> 
> Author: stilor
> Date: Sat Dec 20 00:20:00 2014
> New Revision: 1646905
> 
> URL: http://svn.apache.org/r1646905
> Log:
> * repository.py: Use assertEqual() instead of assertListEqual
>   (which is only available in Python 2.7+)

Thanks!

http://ci.apache.org/builders/svn-x64-centos-gcc/builds/776 is green :)

(See http://subversion.apache.org/buildbot/prod )

	Bert