This is an automated email from the ASF dual-hosted git repository. sai_boorlagadda pushed a commit to branch feature/GEODE-5212-fix-launcher-tests in repository https://gitbox.apache.org/repos/asf/geode.git
commit db224899ad8b700d93a7274f521970af1da3f051 Author: Jens Deppe <[email protected]> AuthorDate: Tue Aug 7 11:48:09 2018 -0700 GEODE-5212: Fix launcher test failures Signed-off-by: Sai Boorlagadda <[email protected]> --- .../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
