From 8424e7f5c7640130762f679e9db8c87671867c85 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Thu, 10 Oct 2013 18:59:28 +0400 Subject: [PATCH] Fix smoke test --- .../integration-tests/testData/compileAndRunModule/Smoke.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/integration-tests/testData/compileAndRunModule/Smoke.kts b/compiler/integration-tests/testData/compileAndRunModule/Smoke.kts index 179d700646e..bf9aea6b44c 100644 --- a/compiler/integration-tests/testData/compileAndRunModule/Smoke.kts +++ b/compiler/integration-tests/testData/compileAndRunModule/Smoke.kts @@ -1,7 +1,7 @@ import kotlin.modules.* fun project() { - module("smoke") { + module("smoke", ".") { sources += "Smoke.kt" } }