Replace println with logger

This commit is contained in:
Dominik Adam Przybysz 2014-12-14 20:53:27 +01:00
parent 0b4f4e0cf8
commit 1bbaf72084
7 changed files with 32 additions and 9 deletions

View file

@ -46,7 +46,7 @@ class ServerMockPT extends Specification {
threads*.start()
Thread.sleep(60000)
then:
responses.eachWithIndex { res, i -> println "Checking $i"; assert res.name() == "goodResponse$i" }
responses.eachWithIndex { res, i -> assert res.name() == "goodResponse$i" }
cleanup:
httpMockServer.stop()
}