test/jdk/com/sun/tools/attach/StartManagementAgent.java
changeset 48150 bc1cffa26561
parent 47216 71c04702a3d5
child 51541 69ee8894f5fa
--- a/test/jdk/com/sun/tools/attach/StartManagementAgent.java	Tue Nov 28 17:11:02 2017 -0500
+++ b/test/jdk/com/sun/tools/attach/StartManagementAgent.java	Wed Nov 29 09:26:58 2017 +0900
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -99,7 +99,7 @@
         } catch(AttachOperationFailedException ex) {
             // We expect parsing of "apa" above to fail, but if the file path
             // can't be read we get a different exception message
-            if (!ex.getMessage().contains("Invalid com.sun.management.jmxremote.port number")) {
+            if (!ex.getMessage().contains("NumberFormatException: For input string: \"apa\"")) {
                 throw ex;
             }
             ex.printStackTrace(System.err);