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

Unified Diff: tests/standalone/number_identity_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/standalone/number_identity_test.dart
diff --git a/tests/standalone/number_identity_test.dart b/tests/standalone/number_identity_test.dart
index 4e83e4615313e40def36b5ff15b0a1906c132d9d..261d6e0e21163e45e104b777d744fd3092330c68 100644
--- a/tests/standalone/number_identity_test.dart
+++ b/tests/standalone/number_identity_test.dart
@@ -12,8 +12,7 @@ main() {
for (int i = 0; i < 1000; i++) testNumberIdentity();
}
-
-testNumberIdentity () {
+testNumberIdentity() {
const int smi = 8;
const int bigint = 22107138293752210713829375;
const double dbl = 8.0;
@@ -27,5 +26,5 @@ testNumberIdentity () {
var b = a + 0;
Expect.isTrue(identical(a, b));
b = a + 1;
- Expect.isFalse(identical(a, b)); // Fails with dart2js.
+ Expect.isFalse(identical(a, b)); // Fails with dart2js.
}

Powered by Google App Engine
This is Rietveld 408576698