1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Fix test.

This commit is contained in:
Cedric Beust 2017-03-25 13:27:30 -07:00
parent 35648cf740
commit e7d369408f

View file

@ -28,7 +28,7 @@ class ProfileTest @Inject constructor(compilerFactory: BuildFileCompiler.IFactor
(if (oldSyntax) " = false\n" else " by profile()\n") + (if (oldSyntax) " = false\n" else " by profile()\n") +
""" """
val $projectVal = project { val $projectVal = project {
name = if (profile) "profileOn" else "profileOff" name = if (debug) "profileOn" else "profileOff"
directory = "$projectDirectory" directory = "$projectDirectory"
} }
""".trim() """.trim()