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

Unified Diff: tests/language/strict_equal_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 months 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
Index: tests/language/strict_equal_test.dart
diff --git a/tests/language/strict_equal_test.dart b/tests/language/strict_equal_test.dart
index 0fddafbe6c5fbac5aa9b4a01131eaa88272c607c..fbdccd84c9d6b98187983f9a5ff8614f1e8b854a 100644
--- a/tests/language/strict_equal_test.dart
+++ b/tests/language/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);
}

Powered by Google App Engine
This is Rietveld 408576698