Return-Path: Delivered-To: apmail-jackrabbit-commits-archive@www.apache.org Received: (qmail 10034 invoked from network); 22 Mar 2007 14:50:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 22 Mar 2007 14:50:35 -0000 Received: (qmail 80218 invoked by uid 500); 22 Mar 2007 14:50:33 -0000 Delivered-To: apmail-jackrabbit-commits-archive@jackrabbit.apache.org Received: (qmail 80154 invoked by uid 500); 22 Mar 2007 14:50:32 -0000 Mailing-List: contact commits-help@jackrabbit.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@jackrabbit.apache.org Delivered-To: mailing list commits@jackrabbit.apache.org Received: (qmail 80115 invoked by uid 99); 22 Mar 2007 14:50:32 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Mar 2007 07:50:32 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Mar 2007 07:50:23 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 08A2A1A9842; Thu, 22 Mar 2007 07:50:03 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r521299 - /jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/SetValueBinaryTest.java Date: Thu, 22 Mar 2007 14:50:02 -0000 To: commits@jackrabbit.apache.org From: reschke@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070322145003.08A2A1A9842@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: reschke Date: Thu Mar 22 07:50:01 2007 New Revision: 521299 URL: http://svn.apache.org/viewvc?view=rev&rev=521299 Log: JCR-809: correct misleading method names in test class Modified: jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/SetValueBinaryTest.java Modified: jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/SetValueBinaryTest.java URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/SetValueBinaryTest.java?view=diff&rev=521299&r1=521298&r2=521299 ============================================================================== --- jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/SetValueBinaryTest.java (original) +++ jackrabbit/trunk/jackrabbit-jcr-tests/src/main/java/org/apache/jackrabbit/test/api/SetValueBinaryTest.java Thu Mar 22 07:50:01 2007 @@ -95,7 +95,7 @@ * Test the persistence of a property modified with an input stream * parameter and saved from the parent Node */ - public void testBooleanParent() throws RepositoryException, IOException { + public void testBinaryParent() throws RepositoryException, IOException { InputStream in = value.getStream(); try { property1.setValue(in); @@ -115,7 +115,7 @@ * Test the deletion of a property by assigning it a null value, saved from * the Session */ - public void testRemoveBooleanSession() throws RepositoryException { + public void testRemoveBinarySession() throws RepositoryException { property1.setValue((InputStream) null); superuser.save(); @@ -131,7 +131,7 @@ * Test the deletion of a property by assigning it a null value, saved from * the parent Node */ - public void testRemoveBooleanParent() throws RepositoryException { + public void testRemoveBinaryParent() throws RepositoryException { property1.setValue((Value) null); node.save();