| Index: tools/testing/dart/status_expression.dart
|
| diff --git a/tools/testing/dart/status_expression.dart b/tools/testing/dart/status_expression.dart
|
| index 6df885ede8e0d1f216be071b8503f3c950c2d73a..aecfe577a59fb95debe599ef9f54ca4f6cfc8168 100644
|
| --- a/tools/testing/dart/status_expression.dart
|
| +++ b/tools/testing/dart/status_expression.dart
|
| @@ -110,7 +110,7 @@ class BooleanVariable implements BooleanExpression {
|
|
|
| BooleanVariable(this.variable);
|
|
|
| - bool evaluate(environment) => variable.termValue(environment) == "true";
|
| + bool evaluate(environment) => variable.termValue(environment) == true;
|
| String toString() => "(bool \$${variable.name})";
|
| }
|
|
|
|
|