Index: tests/language/first_class_types_test.dart |
diff --git a/tests/language/first_class_types_test.dart b/tests/language/first_class_types_test.dart |
index 5db1e5462bf99418153c8fa088197115381c6715..080607c4193435204b0ddd636adaf948da1c4652 100644 |
--- a/tests/language/first_class_types_test.dart |
+++ b/tests/language/first_class_types_test.dart |
@@ -11,7 +11,7 @@ sameType(a, b) { |
differentType(a, b) { |
print("a: ${a.runtimeType}"); |
print("b: ${b.runtimeType}"); |
- Expect.isFalse(a.runtimeType === b.runtimeType); |
+ Expect.isFalse(identical(a.runtimeType, b.runtimeType)); |
Lasse Reichstein Nielsen
2012/11/12 13:10:41
Remove prints.
floitsch
2012/11/12 22:18:43
Done.
|
} |
main() { |