From commits-return-30639-archive-asf-public=cust-asf.ponee.io@geode.apache.org Sat Feb 2 01:21:05 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 928D718067E for ; Sat, 2 Feb 2019 02:21:04 +0100 (CET) Received: (qmail 86209 invoked by uid 500); 2 Feb 2019 01:21:03 -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 86135 invoked by uid 99); 2 Feb 2019 01:21:03 -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; Sat, 02 Feb 2019 01:21:03 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 13C5B857A3; Sat, 2 Feb 2019 01:21:03 +0000 (UTC) Date: Sat, 02 Feb 2019 01:21:02 +0000 To: "commits@geode.apache.org" Subject: [geode] branch feature/GEODE-6291 updated: fixed failures in CreateMappingCommandTest caused by merge MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154907046123.29604.17036030926771412328@gitbox.apache.org> From: dschneider@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: geode X-Git-Refname: refs/heads/feature/GEODE-6291 X-Git-Reftype: branch X-Git-Oldrev: 726129d4adf7650f7f5d69b747ff92b920af1ad0 X-Git-Newrev: ffd21c92683221f4ac95fbea0ff2431e7f18c7a1 X-Git-Rev: ffd21c92683221f4ac95fbea0ff2431e7f18c7a1 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 feature/GEODE-6291 in repository https://gitbox.apache.org/repos/asf/geode.git The following commit(s) were added to refs/heads/feature/GEODE-6291 by this push: new ffd21c9 fixed failures in CreateMappingCommandTest caused by merge ffd21c9 is described below commit ffd21c92683221f4ac95fbea0ff2431e7f18c7a1 Author: Darrel Schneider AuthorDate: Fri Feb 1 17:20:33 2019 -0800 fixed failures in CreateMappingCommandTest caused by merge --- .../geode/connectors/jdbc/internal/cli/CreateMappingCommandTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommandTest.java b/geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommandTest.java index a9580e1..b80722b 100644 --- a/geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommandTest.java +++ b/geode-connectors/src/test/java/org/apache/geode/connectors/jdbc/internal/cli/CreateMappingCommandTest.java @@ -99,7 +99,7 @@ public class CreateMappingCommandTest { .executeFunctionAndGetFunctionResult(any(), any(), any()); doReturn(results).when(createRegionMappingCommand).executeAndGetFunctionResult(any(), any(), any()); - doReturn(members).when(createRegionMappingCommand).findMembersForRegion(regionName); + doReturn(members).when(createRegionMappingCommand).findMembers(any(), any()); mapping = mock(RegionMapping.class); when(mapping.getRegionName()).thenReturn(regionName);