Return-Path: Delivered-To: apmail-struts-commits-archive@locus.apache.org Received: (qmail 77569 invoked from network); 13 Jun 2006 21:51:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 13 Jun 2006 21:51:18 -0000 Received: (qmail 40269 invoked by uid 500); 13 Jun 2006 21:51:15 -0000 Delivered-To: apmail-struts-commits-archive@struts.apache.org Received: (qmail 40166 invoked by uid 500); 13 Jun 2006 21:51:15 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 40154 invoked by uid 99); 13 Jun 2006 21:51:15 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jun 2006 14:51:15 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 13 Jun 2006 14:51:14 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 76D2B1A983A; Tue, 13 Jun 2006 14:50:54 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r413983 - /struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java Date: Tue, 13 Jun 2006 21:50:54 -0000 To: commits@struts.apache.org From: plightbo@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060613215054.76D2B1A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: plightbo Date: Tue Jun 13 14:50:53 2006 New Revision: 413983 URL: http://svn.apache.org/viewvc?rev=413983&view=rev Log: fixing test back (done with test) Modified: struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java Modified: struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java URL: http://svn.apache.org/viewvc/struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java?rev=413983&r1=413982&r2=413983&view=diff ============================================================================== --- struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java (original) +++ struts/action2/trunk/core/src/test/java/org/apache/struts/action2/util/PrefixTrieTest.java Tue Jun 13 14:50:53 2006 @@ -31,7 +31,7 @@ trie.put("a:", a); assertSame(foo, trie.get("foo:bar")); assertSame(a, trie.get("a:bar")); - assertNotNull(trie.get("tee:bar")); + assertNull(trie.get("tee:bar")); assertNull(trie.get("foobar")); } }