From 47ccfb0937fa70d727a540d3d9a0bbbc6f1bfc6d Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Wed, 28 Oct 2015 12:15:40 +0100 Subject: loading the JDK and the Kotlin runtime in tests is now optional --- test/src/model/FunctionTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/src/model/FunctionTest.kt') diff --git a/test/src/model/FunctionTest.kt b/test/src/model/FunctionTest.kt index 9a5a67b4..b185e71a 100644 --- a/test/src/model/FunctionTest.kt +++ b/test/src/model/FunctionTest.kt @@ -142,7 +142,7 @@ Documentation""", content.description.toTestString()) } @Test fun annotatedFunction() { - verifyPackageMember("test/data/functions/annotatedFunction.kt") { func -> + verifyPackageMember("test/data/functions/annotatedFunction.kt", withKotlinRuntime = true) { func -> assertEquals(1, func.annotations.count()) with(func.annotations[0]) { assertEquals("Strictfp", name) -- cgit