Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1063)

Unified Diff: tools/testing/dart/test_suite.dart

Issue 9244004: Tiny style and comment fixes to test_suite.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/dart/test_suite.dart
diff --git a/tools/testing/dart/test_suite.dart b/tools/testing/dart/test_suite.dart
index 67b80e35dfa0dbc627491de9f915fc554f15c47b..ba2e03d99e87c364aca21886fec2474835297d45 100644
--- a/tools/testing/dart/test_suite.dart
+++ b/tools/testing/dart/test_suite.dart
@@ -490,16 +490,14 @@ class StandardTestSuite implements TestSuite {
}
}
- /***
+ /**
* Create a directory for the generated test. Drop the path to the
* dart checkout and the final ".dart" from the test path, and replace
* all path separators with underscores.
- * All variables are block local, except tempDir.
*/
Directory createTemporaryDirectory(String testPath,
String dartDir,
- String optionsName)
- {
+ String optionsName) {
String testUniqueName =
testPath.substring(dartDir.length + 1, testPath.length - 5);
testUniqueName = testUniqueName.replaceAll('/', '_');
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698