Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 5E1DD200B52 for ; Mon, 11 Jul 2016 03:40:41 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 5CBCB160A69; Mon, 11 Jul 2016 01:40:41 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 9B780160A66 for ; Mon, 11 Jul 2016 03:40:40 +0200 (CEST) Received: (qmail 21961 invoked by uid 500); 11 Jul 2016 01:40:39 -0000 Mailing-List: contact dev-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list dev@accumulo.apache.org Received: (qmail 21950 invoked by uid 99); 11 Jul 2016 01:40:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Jul 2016 01:40:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5A94FE09C5; Mon, 11 Jul 2016 01:40:39 +0000 (UTC) From: joshelser To: dev@accumulo.apache.org Reply-To: dev@accumulo.apache.org References: In-Reply-To: Subject: [GitHub] accumulo pull request #122: ACCUMULO-1604: added check for negate option in ... Content-Type: text/plain Message-Id: <20160711014039.5A94FE09C5@git1-us-west.apache.org> Date: Mon, 11 Jul 2016 01:40:39 +0000 (UTC) archived-at: Mon, 11 Jul 2016 01:40:41 -0000 Github user joshelser commented on a diff in the pull request: https://github.com/apache/accumulo/pull/122#discussion_r70193707 --- Diff: core/src/test/java/org/apache/accumulo/core/iterators/user/FilterTest.java --- @@ -208,9 +208,9 @@ public void test2() throws IOException { a = a.deepCopy(null); SortedKeyValueIterator copy = a.deepCopy(null); a.seek(new Range(), EMPTY_COL_FAMS, false); - assertEquals(size(a), 900); + assertEquals(900, size(a)); --- End diff -- Separating out these test fixes into a separate commit (with a separate JIRA) would make me happy as it makes the changeset easier to comprehend if we ever need to go back in history, but I'm not -1 either if you don't. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---