Remove print statements from tests

This commit is contained in:
Vishesh Handa
2020-06-04 13:51:24 +02:00
parent fe95458493
commit f957e7c441

View File

@ -14,11 +14,11 @@ void main() {
setUp(() async {
tempDir = await Directory.systemTemp.createTemp('__flat_folder_test__');
print("TempDir: ${tempDir.path}");
// print("TempDir: ${tempDir.path}");
var random = Random();
for (var i = 0; i < 300; i++) {
print("Building Note $i");
// print("Building Note $i");
await _writeRandomNote(random, tempDir.path);
}
@ -27,7 +27,7 @@ void main() {
});
tearDown(() async {
print("Cleaning Up TempDir: ${tempDir.path}");
// print("Cleaning Up TempDir: ${tempDir.path}");
tempDir.deleteSync(recursive: true);
});