| 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];
|
|
|