From 33e59103ecae1e0e96992f824b0b1ac31b1c3231 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Fri, 14 Mar 2014 22:10:32 +0400 Subject: [PATCH] Fixed test when JDK 8 is system default. --- compiler/testData/cli/jvm/classpath.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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