Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Unified Diff: runtime/tests/vm/dart/isolate_mirror_local_test.dart

Issue 11361190: a === b -> identical(a, b) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/lib/string_base.dart ('k') | runtime/vm/snapshot_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/tests/vm/dart/isolate_mirror_local_test.dart
diff --git a/runtime/tests/vm/dart/isolate_mirror_local_test.dart b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
index 9d5ee5af36ad79ca220c911366a87bf17c47c054..821912be0be2d3db78fd4edd09a5aebeab91e73d 100644
--- a/runtime/tests/vm/dart/isolate_mirror_local_test.dart
+++ b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
@@ -317,7 +317,7 @@ void testLibrariesMap(Map libraries) {
Expect.equals('dart:core.OutOfMemoryError', oom_cls.qualifiedName);
Expect.isFalse(oom_cls.isPrivate);
Expect.equals('Object', oom_cls.superclass.simpleName);
- Expect.isTrue(oom_cls.defaultFactory === null);
+ Expect.isTrue(oom_cls.defaultFactory == null);
Expect.equals('dart:core', oom_cls.owner.simpleName);
Expect.isTrue(oom_cls.isClass);
Expect.equals('Error', oom_cls.superinterfaces[0].simpleName);
@@ -423,7 +423,7 @@ void testCustomInstanceMirror(InstanceMirror mirror) {
Expect.isTrue(cls is ClassMirror);
Expect.equals('MyClass', cls.simpleName);
Expect.equals('MySuperClass', cls.superclass.simpleName);
- Expect.isTrue(cls.defaultFactory === null);
+ Expect.isTrue(cls.defaultFactory == null);
Expect.equals('isolate_mirror_local_test', cls.owner.simpleName);
Expect.isTrue(cls.isClass);
Expect.equals('MyInterface', cls.superinterfaces[0].simpleName);
« no previous file with comments | « runtime/lib/string_base.dart ('k') | runtime/vm/snapshot_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698