Index: tests/language_strong/strict_equal_test.dart |
diff --git a/tests/language_strong/strict_equal_test.dart b/tests/language_strong/strict_equal_test.dart |
index be7ab0fbbe92f345d68a906a3e44872bf5026d1b..31c31cd48616c730dd434c8650ee7dc79222b536 100644 |
--- a/tests/language_strong/strict_equal_test.dart |
+++ b/tests/language_strong/strict_equal_test.dart |
@@ -43,7 +43,6 @@ main() { |
} |
} |
- |
test1(a) { |
return identical(a, 3); |
} |
@@ -52,17 +51,14 @@ test2(a) { |
return !identical(a, 3); |
} |
- |
test2r(a) { |
return !identical(3, a); |
} |
- |
test3() { |
return identical(get5(), 5); |
} |
- |
test4(a) { |
if (identical(a, 3)) { |
return 1; |
@@ -71,7 +67,6 @@ test4(a) { |
} |
} |
- |
test5(a) { |
if (!identical(a, 3)) { |
return 1; |
@@ -80,7 +75,6 @@ test5(a) { |
} |
} |
- |
test6() { |
if (identical(get5(), 5)) { |
return 1; |
@@ -97,7 +91,6 @@ test7() { |
return null != null; |
} |
- |
test8() { |
if (null != null) { |
return 1; |
@@ -106,17 +99,14 @@ test8() { |
} |
} |
- |
test9(a) { |
return identical(a, 0); |
} |
- |
test9r(a) { |
return identical(0, a); |
} |
- |
test10(a) { |
return !identical(a, 0); |
} |