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 D16D1200C32 for ; Wed, 1 Feb 2017 08:30:36 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id D01C3160B44; Wed, 1 Feb 2017 07:30:36 +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 088B7160B5E for ; Wed, 1 Feb 2017 08:30:35 +0100 (CET) Received: (qmail 67347 invoked by uid 500); 1 Feb 2017 07:30:35 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 67248 invoked by uid 99); 1 Feb 2017 07:30:35 -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; Wed, 01 Feb 2017 07:30:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id F2B84DFC40; Wed, 1 Feb 2017 07:30:34 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Date: Wed, 01 Feb 2017 07:30:39 -0000 Message-Id: <55561983a4704d2e92f7f9e010ebea1b@git.apache.org> In-Reply-To: <32c3c11c116f461d958a64df85c11f10@git.apache.org> References: <32c3c11c116f461d958a64df85c11f10@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [6/9] ignite git commit: ignite-db-x fix testFirstFilteredEvent archived-at: Wed, 01 Feb 2017 07:30:37 -0000 ignite-db-x fix testFirstFilteredEvent Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/8dd2181f Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/8dd2181f Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/8dd2181f Branch: refs/heads/ignite-3477-compact Commit: 8dd2181f5f914677b18dd43ca24025f471c7f081 Parents: 9773ea7 Author: Dmitriy Govorukhin Authored: Tue Jan 31 18:53:58 2017 +0300 Committer: Dmitriy Govorukhin Committed: Tue Jan 31 18:53:58 2017 +0300 ---------------------------------------------------------------------- .../CacheContinuousQueryFailoverAbstractSelfTest.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/8dd2181f/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryFailoverAbstractSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryFailoverAbstractSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryFailoverAbstractSelfTest.java index bd980be..8e6f406 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryFailoverAbstractSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryFailoverAbstractSelfTest.java @@ -260,15 +260,15 @@ public abstract class CacheContinuousQueryFailoverAbstractSelfTest extends GridC qryClnCache.put(key, -1); qryClnCache.put(keys.get(0), 100); - } - GridTestUtils.waitForCondition(new GridAbsPredicate() { - @Override public boolean apply() { - return lsnr.evts.size() == 1; - } - }, 5000); + GridTestUtils.waitForCondition(new GridAbsPredicate() { + @Override public boolean apply() { + return lsnr.evts.size() == 1; + } + }, 5000); - assertEquals(lsnr.evts.size(), 1); + assertEquals(lsnr.evts.size(), 1); + } } /**