| Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StrictModeTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StrictModeTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StrictModeTest.java
|
| index a046cea53347f8399f63642dc1745a26c03df6bc..9beddf064e7864d69275f5c133909692836accaa 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StrictModeTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/StrictModeTest.java
|
| @@ -110,7 +110,7 @@ public class StrictModeTest extends ResolverTestCase {
|
| " return 0;",
|
| "}"));
|
| resolve(source);
|
| - assertErrors(source, StaticTypeWarningCode.UNDEFINED_OPERATOR);
|
| + assertNoErrors(source);
|
| }
|
|
|
| public void test_if_is() throws Exception {
|
| @@ -122,7 +122,7 @@ public class StrictModeTest extends ResolverTestCase {
|
| " return 0;",
|
| "}"));
|
| resolve(source);
|
| - assertErrors(source, StaticTypeWarningCode.UNDEFINED_OPERATOR);
|
| + assertNoErrors(source);
|
| }
|
|
|
| public void test_if_isNot() throws Exception {
|
|
|