fix wizard integration test

This commit is contained in:
Stefan Oehme 2015-10-22 16:44:28 +02:00
parent b5e0f8cdfc
commit d55b5a4bde

View file

@ -156,9 +156,10 @@ class CliWizardIntegrationTest {
}
private def void collectAllFiles(File root, List<File> children) {
children.add(root)
if (root.isDirectory) {
root.listFiles.forEach[collectAllFiles(children)]
} else {
children.add(root)
}
}