| Index: tests/language/first_class_types_test.dart
|
| ===================================================================
|
| --- tests/language/first_class_types_test.dart (revision 12944)
|
| +++ tests/language/first_class_types_test.dart (working copy)
|
| @@ -5,11 +5,11 @@
|
| class C<T> {}
|
|
|
| sameType(a, b) {
|
| - Expect.isTrue(a.runtimeType() === b.runtimeType());
|
| + Expect.isTrue(a.runtimeType === b.runtimeType);
|
| }
|
|
|
| differentType(a, b) {
|
| - Expect.isFalse(a.runtimeType() === b.runtimeType());
|
| + Expect.isFalse(a.runtimeType === b.runtimeType);
|
| }
|
|
|
| main() {
|
|
|