test/jdk/com/sun/jdi/MethodExitReturnValuesTest.java
changeset 49118 dbbbf6d7cf6e
parent 47216 71c04702a3d5
--- a/test/jdk/com/sun/jdi/MethodExitReturnValuesTest.java	Thu Mar 01 19:01:34 2018 -0800
+++ b/test/jdk/com/sun/jdi/MethodExitReturnValuesTest.java	Thu Mar 01 21:23:35 2018 -0800
@@ -66,8 +66,9 @@
     public static ClassLoader classLoaderValue;
     {
         try {
-            urls[0] = new URL("hi there");
-        } catch (java.net.MalformedURLException ee) {
+            urls[0] = new URL("file:/foo");
+        } catch (java.net.MalformedURLException ex) {
+            throw new AssertionError(ex);
         }
         classLoaderValue = new URLClassLoader(urls);
     }