test/jdk/tools/jpackage/linux/BundleNameTest.java
branchJDK-8200758-branch
changeset 58115 4a27283b542d
parent 58113 885b0543f6e4
child 58301 e0efb29609bd
--- a/test/jdk/tools/jpackage/linux/BundleNameTest.java	Tue Sep 10 14:57:03 2019 -0400
+++ b/test/jdk/tools/jpackage/linux/BundleNameTest.java	Wed Sep 11 13:26:36 2019 -0400
@@ -26,7 +26,7 @@
 
 
 /**
- * Test --linux-bundle-name parameter. Output of the test should be
+ * Test --linux-package-name parameter. Output of the test should be
  * quickbrownfox2_1.0-1_amd64.deb or quickbrownfox2-1.0-1.amd64.rpm package
  * bundle. The output package should provide the same functionality as the
  * default package.
@@ -41,7 +41,7 @@
 
 /*
  * @test
- * @summary jpackage with --linux-bundle-name
+ * @summary jpackage with --linux-package-name
  * @library ../helpers
  * @requires (os.family == "linux")
  * @modules jdk.jpackage/jdk.jpackage.internal
@@ -56,7 +56,7 @@
         .forTypes(PackageType.LINUX)
         .configureHelloApp()
         .addInitializer(cmd -> {
-            cmd.addArguments("--linux-bundle-name", PACKAGE_NAME);
+            cmd.addArguments("--linux-package-name", PACKAGE_NAME);
         })
         .forTypes(PackageType.LINUX_DEB)
         .addBundlePropertyVerifier("Package", PACKAGE_NAME)