Return-Path: X-Original-To: apmail-directory-commits-archive@www.apache.org Delivered-To: apmail-directory-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6824E9309 for ; Mon, 20 Feb 2012 13:51:54 +0000 (UTC) Received: (qmail 77397 invoked by uid 500); 20 Feb 2012 13:51:54 -0000 Delivered-To: apmail-directory-commits-archive@directory.apache.org Received: (qmail 77341 invoked by uid 500); 20 Feb 2012 13:51:54 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 77334 invoked by uid 99); 20 Feb 2012 13:51:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Feb 2012 13:51:54 +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; Mon, 20 Feb 2012 13:51:52 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 8093C238889B for ; Mon, 20 Feb 2012 13:51:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1291257 - /directory/apacheds/trunk/xdbm-partition/src/test/java/org/apache/directory/server/xdbm/impl/avl/AvlPartitionTest.java Date: Mon, 20 Feb 2012 13:51:31 -0000 To: commits@directory.apache.org From: elecharny@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120220135131.8093C238889B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: elecharny Date: Mon Feb 20 13:51:31 2012 New Revision: 1291257 URL: http://svn.apache.org/viewvc?rev=1291257&view=rev Log: Fixed another test failure :/ Modified: directory/apacheds/trunk/xdbm-partition/src/test/java/org/apache/directory/server/xdbm/impl/avl/AvlPartitionTest.java Modified: directory/apacheds/trunk/xdbm-partition/src/test/java/org/apache/directory/server/xdbm/impl/avl/AvlPartitionTest.java URL: http://svn.apache.org/viewvc/directory/apacheds/trunk/xdbm-partition/src/test/java/org/apache/directory/server/xdbm/impl/avl/AvlPartitionTest.java?rev=1291257&r1=1291256&r2=1291257&view=diff ============================================================================== --- directory/apacheds/trunk/xdbm-partition/src/test/java/org/apache/directory/server/xdbm/impl/avl/AvlPartitionTest.java (original) +++ directory/apacheds/trunk/xdbm-partition/src/test/java/org/apache/directory/server/xdbm/impl/avl/AvlPartitionTest.java Mon Feb 20 13:51:31 2012 @@ -656,8 +656,8 @@ public class AvlPartitionTest Long id = partition.getEntryId( dn2 ); assertNotNull( id ); Entry entry2 = partition.lookup( id ); - assertEquals( "ja+es", entry2.get( "sn" ).getString() ); - assertEquals( "ja+es", entry2.get( "sn" ).get().getNormValue() ); + assertEquals( "Ja\\+es", entry2.get( "sn" ).getString() ); + assertEquals( "ja\\+es", entry2.get( "sn" ).get().getNormValue() ); }