diff -r 91e9d4691e5e -r 405ddd80496e test/jdk/tools/jpackage/createappimage/macosx/JPackageCreateAppImageBundleIdentifierTest.java --- a/test/jdk/tools/jpackage/createappimage/macosx/JPackageCreateAppImageBundleIdentifierTest.java Fri Jun 28 16:50:51 2019 -0400 +++ b/test/jdk/tools/jpackage/createappimage/macosx/JPackageCreateAppImageBundleIdentifierTest.java Sat Jun 29 09:11:19 2019 -0400 @@ -44,7 +44,6 @@ private static final String OUTPUT = "output"; private static final String app = JPackagePath.getApp(); private static final String appOutput = JPackagePath.getAppOutputFile(); - private static final String appWorkingDir = JPackagePath.getAppWorkingDir(); private static final String MAC_BUNDLE_IDENTIFIER = "TestBundleIdentifier"; private static final String APP_NAME = "test"; private static final String MAIN_CLASS = "Hello"; @@ -88,7 +87,7 @@ "Test application exited with error: " + retVal); } - File outfile = new File(appWorkingDir + File.separator + appOutput); + File outfile = new File(appOutput); if (!outfile.exists()) { throw new AssertionError(appOutput + " was not created"); }