Remove unintended comment (#101130)

This commit is contained in:
Emmanuel Garcia 2022-03-31 12:35:05 -07:00 committed by GitHub
parent e298c79032
commit 16ebbdf336
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,8 +37,7 @@ Future<void> runProjectTest(Future<void> Function(FlutterProject project) testFu
try { try {
await testFunction(project); await testFunction(project);
} finally { } finally {
print('tempDir=$tempDir'); rmTree(tempDir);
// rmTree(tempDir);
} }
} }