minor: fixing maven plugin tests

This commit is contained in:
Ilya Chernikov
2017-03-23 13:51:01 +01:00
parent 4d7e64614a
commit 3b60d56c0b
3 changed files with 3 additions and 3 deletions
@@ -1,4 +1,4 @@
source(new File(basedir, "../../../verify-common.bsh").getAbsolutePath());
assertBuildLogHasLine("[INFO] BUILD FAILURE");
assertBuildLogHasLineThatContains("script threw an exception: exception from script");
assertBuildLogHasLineThatContains("exception from script");
@@ -7,7 +7,7 @@ import org.jetbrains.kotlin.compiler.plugin.*
import org.jetbrains.kotlin.config.*
object TestPluginKeys {
val TestOption = CompilerConfigurationKey.create<String>("test option")!!
val TestOption = CompilerConfigurationKey.create<String>("test option")
}
class TestCommandLineProcessor : CommandLineProcessor {