| Index: tests/language/operator5_test.dart
|
| diff --git a/tests/language/operator5_test.dart b/tests/language/operator5_test.dart
|
| index 224deb691ccbb4c6bfedaddeb3712a484cb0f3fa..52c9bcb9894e0c0fc20a29483499c2a5c3edf8e5 100644
|
| --- a/tests/language/operator5_test.dart
|
| +++ b/tests/language/operator5_test.dart
|
| @@ -19,14 +19,6 @@ equals(a) {
|
| }
|
| }
|
|
|
| -equalsNull(a) {
|
| - try {
|
| - Expect.equals(false, a == null);
|
| - } catch(TypeError e) {
|
| - // In checked mode the test doesn't do anything.
|
| - }
|
| -}
|
| -
|
| less(a) {
|
| try {
|
| Expect.equals(null, a < a);
|
| @@ -54,7 +46,6 @@ greaterEqual(a) {
|
| main() {
|
| var a = new A();
|
| equals(a);
|
| - equalsNull(a);
|
| less(a);
|
| lessEqual(a);
|
| greater(a);
|
|
|