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"""