Merge pull request #639 from hapifhir/java_home_testfix

changing JAVA_HOME to remove trailing slash
This commit is contained in:
Grahame Grieve 2021-11-03 11:01:31 +11:00 committed by GitHub
commit 1ac0046dcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class UtilitiesTest {
public static final String WIN_JAVA_HOME = System.getenv("JAVA_HOME") + "\\";
public static final String OSX_USER_DIR = System.getProperty("user.home") + "/";
public static final String OSX_JAVA_HOME = System.getenv("JAVA_HOME") + "/";
public static final String OSX_JAVA_HOME = System.getenv("JAVA_HOME");
@Test
@DisplayName("Test Utilities.path maps temp directory correctly")