diff --git a/compiler/testData/cli/jvm/classpath.kt b/compiler/testData/cli/jvm/classpath.kt index dbd1159f1a6..1b7a2df9121 100644 --- a/compiler/testData/cli/jvm/classpath.kt +++ b/compiler/testData/cli/jvm/classpath.kt @@ -2,13 +2,13 @@ import sun.nio.cs.SingleByte import sun.net.spi.nameservice.dns.DNSNameService import javax.crypto.Cipher import com.sun.java.browser.plugin2.DOM -import com.sun.crypto.provider.AESCipher +import com.sun.crypto.provider.SunJCE fun box(): String { val a = SingleByte() // charsets.jar val c = DNSNameService() // dnsns.ajr val e : Cipher? = null // jce.jar - val f : AESCipher? = null // sunjce_provider.jar + val f : SunJCE? = null // sunjce_provider.jar val j : DOM? = null // plugin.jar return "OK" } \ No newline at end of file