From commits-return-25196-archive-asf-public=cust-asf.ponee.io@geode.apache.org Mon Jan 8 21:08:14 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 97E8E180607 for ; Mon, 8 Jan 2018 21:08:14 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 88315160C2C; Mon, 8 Jan 2018 20:08:14 +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 D03CC160C29 for ; Mon, 8 Jan 2018 21:08:13 +0100 (CET) Received: (qmail 74207 invoked by uid 500); 8 Jan 2018 20:08:13 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 74196 invoked by uid 99); 8 Jan 2018 20:08:12 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 08 Jan 2018 20:08:12 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 38A5C82045; Mon, 8 Jan 2018 20:08:12 +0000 (UTC) Date: Mon, 08 Jan 2018 20:08:12 +0000 To: "commits@geode.apache.org" Subject: [geode] branch develop updated: changed DistributionManager to ClusterDistributionManager in unit test MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <151544209192.31701.16637257518652827186@gitbox.apache.org> From: dschneider@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: geode X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: f905ea2bd178d4301787b6d123780408202533b3 X-Git-Newrev: 55adfecdf250bbf0331cec1cf85ce2ca08bd04c9 X-Git-Rev: 55adfecdf250bbf0331cec1cf85ce2ca08bd04c9 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. dschneider pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/geode.git The following commit(s) were added to refs/heads/develop by this push: new 55adfec changed DistributionManager to ClusterDistributionManager in unit test 55adfec is described below commit 55adfecdf250bbf0331cec1cf85ce2ca08bd04c9 Author: Darrel Schneider AuthorDate: Mon Jan 8 12:07:41 2018 -0800 changed DistributionManager to ClusterDistributionManager in unit test --- .../java/org/apache/geode/internal/cache/StateMarkerMessageTest.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/geode-core/src/test/java/org/apache/geode/internal/cache/StateMarkerMessageTest.java b/geode-core/src/test/java/org/apache/geode/internal/cache/StateMarkerMessageTest.java index aa92b43..a436beb 100644 --- a/geode-core/src/test/java/org/apache/geode/internal/cache/StateMarkerMessageTest.java +++ b/geode-core/src/test/java/org/apache/geode/internal/cache/StateMarkerMessageTest.java @@ -16,7 +16,6 @@ package org.apache.geode.internal.cache; import static org.assertj.core.api.Assertions.assertThat; import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.any; import static org.mockito.Mockito.doThrow; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.times; @@ -27,7 +26,7 @@ import org.junit.Test; import org.junit.experimental.categories.Category; import org.apache.geode.GemFireIOException; -import org.apache.geode.distributed.internal.DistributionManager; +import org.apache.geode.distributed.internal.ClusterDistributionManager; import org.apache.geode.distributed.internal.membership.InternalDistributedMember; import org.apache.geode.internal.cache.StateFlushOperation.StateMarkerMessage; import org.apache.geode.test.junit.categories.UnitTest; @@ -45,7 +44,7 @@ public class StateMarkerMessageTest { @Test public void testProcessWithWaitForCurrentOperationsThatTimesOut() { InternalDistributedMember relayRecipient = mock(InternalDistributedMember.class); - DistributionManager dm = mock(DistributionManager.class); + ClusterDistributionManager dm = mock(ClusterDistributionManager.class); InternalCache gfc = mock(InternalCache.class); DistributedRegion region = mock(DistributedRegion.class); CacheDistributionAdvisor distributionAdvisor = mock(CacheDistributionAdvisor.class); -- To stop receiving notification emails like this one, please contact ['"commits@geode.apache.org" '].