You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ph...@apache.org on 2013/03/15 19:57:08 UTC

svn commit: r1457067 - /subversion/trunk/subversion/bindings/swig/python/tests/checksum.py

Author: philip
Date: Fri Mar 15 18:57:07 2013
New Revision: 1457067

URL: http://svn.apache.org/r1457067
Log:
* subversion/bindings/swig/python/tests/checksum.py:
  Revert change committed accidentally in r1457064.

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

Modified: subversion/trunk/subversion/bindings/swig/python/tests/checksum.py
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/swig/python/tests/checksum.py?rev=1457067&r1=1457066&r2=1457067&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/swig/python/tests/checksum.py (original)
+++ subversion/trunk/subversion/bindings/swig/python/tests/checksum.py Fri Mar 15 18:57:07 2013
@@ -36,11 +36,6 @@ class ChecksumTestCases(unittest.TestCas
         self.assertEqual(int(check_val), 0,
                          "Value of initialized digest is not 0")
 
-        val1 = svn.core.svn_checksum_create(svn.core.svn_checksum_md5)
-        val2 = svn.core.svn_checksum_create(svn.core.svn_checksum_md5)
-        val1.digest = 'foo'
-        print svn.core.svn_checksum_match(val1, val2)
-
 def suite():
     return unittest.defaultTestLoader.loadTestsFromTestCase(ChecksumTestCases)