From c3122e49020685d3ba25ab879137c001a3ce6507 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Mon, 25 Jul 2016 04:31:59 -0800 Subject: [PATCH] Remove println. --- src/test/kotlin/com/beust/kobalt/IncludeExcludeTest.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/test/kotlin/com/beust/kobalt/IncludeExcludeTest.kt b/src/test/kotlin/com/beust/kobalt/IncludeExcludeTest.kt index d1473484..81969a1c 100644 --- a/src/test/kotlin/com/beust/kobalt/IncludeExcludeTest.kt +++ b/src/test/kotlin/com/beust/kobalt/IncludeExcludeTest.kt @@ -41,7 +41,6 @@ class IncludeExcludeTest : KobaltTest() { fun html() { val inc = IncludedFile(From(""), To(""), listOf(IFileSpec.GlobSpec("**html"))) val files = inc.allFromFiles(htmlDir.path) - println("Files " + files) Assert.assertEquals(files.size, 1) Assert.assertEquals(files[0].path, A_HTML) }