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

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

Issue 9662065: Revert stray edit to test.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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_runner.dart
diff --git a/tools/testing/dart/test_runner.dart b/tools/testing/dart/test_runner.dart
index dcbcdf119370f882507b2947179757a05af28050..cddf5aeec010c6c71ec97b2434a2fae2756625a4 100644
--- a/tools/testing/dart/test_runner.dart
+++ b/tools/testing/dart/test_runner.dart
@@ -1014,7 +1014,7 @@ class ProcessQueue {
filePath = filePath.substring(0, index) + '${pathSep}testing${pathSep}';
var dir = new Directory(filePath);
dir.onFile = (String file) {
- if (const RegExp("selenium-server-standalone-.*\.jar").hasMatch(file)
+ if (const RegExp(@"selenium-server-standalone-.*\.jar").hasMatch(file)
Emily Fortuna 2012/03/13 00:30:32 But if we add the @ character, we'd be using a raw
&& _seleniumServer == null) {
_seleniumServer = new Process.start('java', ['-jar', file]);
// Heads up: there seems to an obscure data race of some form in
« 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