Skip to content

Commit

Permalink
fix wrong log print (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoey-juan authored and Malinskiy committed Aug 17, 2018
1 parent aac9897 commit 43a4220
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/kotlin/com/malinskiy/marathon/Marathon.kt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Marathon(val configuration: Configuration) {
val parsedTests = testParser.extract(configuration.testApplicationOutput)
val tests = applyTestFilters(parsedTests)

println { "${tests.size} test methods after filters" }
println("${tests.size} test methods after filters")
val progressReporter = ProgressReporter()
val scheduler = Scheduler(deviceProvider, analytics, configuration, tests, progressReporter)

Expand Down

0 comments on commit 43a4220

Please sign in to comment.