< prev index next >

test/jdk/java/lang/annotation/repeatingAnnotations/CustomRepeatingWithSecurityManager.java

Print this page
rev 51789 : [mq]: asserts

@@ -24,20 +24,20 @@
 /*
  * @test
  * @bug     8073056
  * @summary Repeating annotations throws java.security.AccessControlException with a SecurityManager
  *
- * @library /lib/testlibrary
- * @build jdk.testlibrary.Asserts
+ * @library /test/lib
+ * @build jdk.test.lib.Asserts
  * @run main CustomRepeatingWithSecurityManager
  * @run main/othervm CustomRepeatingWithSecurityManager "withSM"
  */
 
 import java.lang.annotation.*;
 import java.lang.reflect.*;
 
-import jdk.testlibrary.Asserts;
+import jdk.test.lib.Asserts;
 
 public class CustomRepeatingWithSecurityManager {
     public static void main(String[] args) throws Exception {
         if (args.length == 1) {
             SecurityManager sm = new SecurityManager();
< prev index next >