--- old/test/hotspot/jtreg/runtime/Nestmates/privateConstructors/TestMethodHandles.java 2017-10-13 02:04:08.746085698 -0400 +++ new/test/hotspot/jtreg/runtime/Nestmates/privateConstructors/TestMethodHandles.java 2017-10-13 02:04:07.033987715 -0400 @@ -24,7 +24,7 @@ /* * @test * @bug 8046171 - * @summary Test access to private constructors between nestmates and nest-top + * @summary Test access to private constructors between nestmates and nest-host * using different flavours of named nested types using method handles * @run main TestMethodHandles */ @@ -128,7 +128,7 @@ } public static void main(String[] args) throws Throwable { - // These initial constructions test nest-top access + // These initial constructions test nest-host access MethodHandle mh = lookup().findConstructor(TestMethodHandles.class, NOARG_T); TestMethodHandles o = (TestMethodHandles) mh.invoke();