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 9f08353 GEODE-5212: Make paths platform agnostic
9f08353 is described below
commit 9f083537c3cab993ecb6a36f76bff27723d740c4
Author: Sai Boorlagadda <[email protected]>
AuthorDate: Fri Sep 28 15:26:37 2018 -0700
GEODE-5212: Make paths platform agnostic
---
.../internal/cli/commands/ExportLogsWithMemberGroupDistributedTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/ExportLogsWithMemberGroupDistributedTest.java
b/geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/ExportLogsWithMemberGroupDistributedTest.java
index c52a2e3..d6af9c5 100644
---
a/geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/ExportLogsWithMemberGroupDistributedTest.java
+++
b/geode-core/src/distributedTest/java/org/apache/geode/management/internal/cli/commands/ExportLogsWithMemberGroupDistributedTest.java
@@ -109,7 +109,7 @@ public class ExportLogsWithMemberGroupDistributedTest {
zipPath = getZipPathFromCommandResult(connector.getGfshOutput());
actualZipEntries = getZipEntries(zipPath);
- expectedFiles = Sets.newHashSet("server-3/server-3.log");
+ expectedFiles = Sets.newHashSet(Paths.get("server-3",
"server-3.log").toString());
assertThat(actualZipEntries).isEqualTo(expectedFiles);
}