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

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

Issue 113713006: test.py: Removed JUnitTestSuite, since it's no longer used (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years 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 | « dart/tools/testing/dart/test_suite.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/testing/dart/utils.dart
diff --git a/dart/tools/testing/dart/utils.dart b/dart/tools/testing/dart/utils.dart
index ab81b513a248b8ff571eb1e76aa299b54a244666..59c5021b171fe9c290309a2ec59ba93a8ca4d478 100644
--- a/dart/tools/testing/dart/utils.dart
+++ b/dart/tools/testing/dart/utils.dart
@@ -178,7 +178,7 @@ class Locations {
if (location != null && location != '') {
return location;
}
- final browserLocations = const {
+ var browserLocations = {
'firefox': const {
'windows': 'C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe',
'linux': 'firefox',
@@ -205,6 +205,7 @@ class Locations {
'ie10': const {
'windows': 'C:\\Program Files\\Internet Explorer\\iexplore.exe'
}};
+ browserLocations['ff'] = browserLocations['firefox'];
assert(browserLocations[browserName] != null);
location = browserLocations[browserName][Platform.operatingSystem];
« no previous file with comments | « dart/tools/testing/dart/test_suite.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698