| Index: tests/standalone/src/StatusExpressionTest.dart
|
| diff --git a/tests/standalone/src/StatusExpressionTest.dart b/tests/standalone/src/StatusExpressionTest.dart
|
| index d33f989fd6a7f05d8ec0e984ac9b87b47e0022c2..bc733db25351023fd30637e20e0c7aa48722f7d7 100644
|
| --- a/tests/standalone/src/StatusExpressionTest.dart
|
| +++ b/tests/standalone/src/StatusExpressionTest.dart
|
| @@ -31,7 +31,7 @@ class StatusExpressionTest {
|
| @"(($mode == debug) && (($arch == chromium) || ($arch == dartc)))",
|
| ast.toString());
|
| // Test BooleanExpression.evaluate().
|
| - Map<String, String> environment = new Map<String, String>();
|
| + Map environment = new Map();
|
| environment["arch"] = "dartc";
|
| environment["mode"] = "debug";
|
| Expect.isTrue(ast.evaluate(environment));
|
| @@ -94,7 +94,7 @@ class StatusExpressionTest {
|
| ast.toString());
|
|
|
| // Test SetExpression.evaluate().
|
| - Map<String, String> environment = new Map<String, String>();
|
| + Map environment = new Map();
|
| environment["arch"] = "ia32";
|
| environment["checked"] = true;
|
| environment["mode"] = "debug";
|
| @@ -126,7 +126,7 @@ class StatusExpressionTest {
|
| ast.toString());
|
|
|
| // Test BooleanExpression.evaluate().
|
| - Map<String, String> environment = new Map<String, String>();
|
| + Map environment = new Map();
|
| environment["arch"] = "ia32";
|
| environment["checked"] = true;
|
| environment["mode"] = "debug";
|
|
|