You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by sa...@apache.org on 2018/08/07 20:37:57 UTC

[geode] branch develop updated: GEODE-5212: Fix launcher test failures (#2273)

This is an automated email from the ASF dual-hosted git repository.

sai_boorlagadda 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 d5bdece  GEODE-5212: Fix launcher test failures (#2273)
d5bdece is described below

commit d5bdece4afa6849fbd017e282ef01c61ee2ec640
Author: Sai Boorlagadda <sa...@gmail.com>
AuthorDate: Tue Aug 7 13:37:52 2018 -0700

    GEODE-5212: Fix launcher test failures (#2273)
---
 .../geode/distributed/LocatorLauncherRemoteIntegrationTest.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/geode-core/src/integrationTest/java/org/apache/geode/distributed/LocatorLauncherRemoteIntegrationTest.java b/geode-core/src/integrationTest/java/org/apache/geode/distributed/LocatorLauncherRemoteIntegrationTest.java
index 16d452b..34aa1d5 100755
--- a/geode-core/src/integrationTest/java/org/apache/geode/distributed/LocatorLauncherRemoteIntegrationTest.java
+++ b/geode-core/src/integrationTest/java/org/apache/geode/distributed/LocatorLauncherRemoteIntegrationTest.java
@@ -139,7 +139,7 @@ public class LocatorLauncherRemoteIntegrationTest extends LocatorLauncherRemoteI
     assertThat(locatorState.getMemberName()).isEqualTo(getUniqueName());
     assertThat(locatorState.getPid().intValue()).isEqualTo(getLocatorPid());
     assertThat(locatorState.getUptime()).isGreaterThan(0);
-    assertThat(locatorState.getWorkingDirectory()).isEqualTo(getWorkingDirectoryPath());
+    assertThat(locatorState.getWorkingDirectory()).isEqualToIgnoringCase(getWorkingDirectoryPath());
   }
 
   @Test
@@ -159,7 +159,7 @@ public class LocatorLauncherRemoteIntegrationTest extends LocatorLauncherRemoteI
     assertThat(locatorState.getMemberName()).isEqualTo(getUniqueName());
     assertThat(locatorState.getPid().intValue()).isEqualTo(readPidFile());
     assertThat(locatorState.getUptime()).isGreaterThan(0);
-    assertThat(locatorState.getWorkingDirectory()).isEqualTo(getWorkingDirectoryPath());
+    assertThat(locatorState.getWorkingDirectory()).isEqualToIgnoringCase(getWorkingDirectoryPath());
   }
 
   @Test