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 18:48:39 UTC

[geode] branch feature/GEODE-5212-fix-launcher-tests created (now db22489)

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

sai_boorlagadda pushed a change to branch feature/GEODE-5212-fix-launcher-tests
in repository https://gitbox.apache.org/repos/asf/geode.git.


      at db22489  GEODE-5212: Fix launcher test failures

This branch includes the following new commits:

     new db22489  GEODE-5212: Fix launcher test failures

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[geode] 01/01: GEODE-5212: Fix launcher test failures

Posted by sa...@apache.org.
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 <jd...@pivotal.io>
AuthorDate: Tue Aug 7 11:48:09 2018 -0700

    GEODE-5212: Fix launcher test failures
    
    Signed-off-by: Sai Boorlagadda <sb...@pivotal.io>
---
 .../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