Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 47F6BDD10 for ; Fri, 15 Mar 2013 18:59:16 +0000 (UTC) Received: (qmail 48593 invoked by uid 500); 15 Mar 2013 18:59:16 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 48571 invoked by uid 500); 15 Mar 2013 18:59:16 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 48561 invoked by uid 99); 15 Mar 2013 18:59:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Mar 2013 18:59:16 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Mar 2013 18:59:13 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 219802388994; Fri, 15 Mar 2013 18:57:08 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1457067 - /subversion/trunk/subversion/bindings/swig/python/tests/checksum.py Date: Fri, 15 Mar 2013 18:57:08 -0000 To: commits@subversion.apache.org From: philip@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130315185708.219802388994@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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)