| Index: tests/utils/dummy_compiler_test.dart
|
| diff --git a/tests/utils/dummy_compiler_test.dart b/tests/utils/dummy_compiler_test.dart
|
| index d0a7797d42537ea071ae648bed7ee364be0b6aa7..f7096f1f025bbc0c75393d663adf5af27c80db0c 100644
|
| --- a/tests/utils/dummy_compiler_test.dart
|
| +++ b/tests/utils/dummy_compiler_test.dart
|
| @@ -47,7 +47,7 @@ Future<String> provider(Uri uri) {
|
| }
|
|
|
| void handler(Uri uri, int begin, int end, String message, Diagnostic kind) {
|
| - if (uri === null) {
|
| + if (uri == null) {
|
| print('$kind: $message');
|
| } else {
|
| print('$uri:$begin:$end: $kind: $message');
|
| @@ -59,7 +59,7 @@ main() {
|
| new Uri.fromComponents(scheme: 'lib', path: '/'),
|
| new Uri.fromComponents(scheme: 'package', path: '/'),
|
| provider, handler).value;
|
| - if (code === null) {
|
| + if (code == null) {
|
| throw 'Compilation failed';
|
| }
|
| }
|
|
|