--- old/test/jdk/com/sun/jdi/EarlyReturnTest.java 2018-03-01 21:23:47.319789583 -0800 +++ new/test/jdk/com/sun/jdi/EarlyReturnTest.java 2018-03-01 21:23:47.087787503 -0800 @@ -82,8 +82,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); } @@ -116,8 +117,9 @@ public static ClassLoader eclassLoaderValue; { try { - urls[0] = new URL("been there, done that"); - } catch (java.net.MalformedURLException ee) { + urls[0] = new URL("file:/bar"); + } catch (java.net.MalformedURLException ex) { + throw new AssertionError(ex); } classLoaderValue = new URLClassLoader(urls); }