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

Unified Diff: tests/language/assign_op_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/assign_op_test.dart
diff --git a/tests/language/assign_op_test.dart b/tests/language/assign_op_test.dart
index a531f319033bc108f214b1bc2e1730c8d34aea2b..9ee3eae2f8365262ba1fcc1daf828356e261aa04 100644
--- a/tests/language/assign_op_test.dart
+++ b/tests/language/assign_op_test.dart
@@ -6,7 +6,6 @@
import "package:expect/expect.dart";
-
class AssignOpTest {
AssignOpTest() {}
@@ -65,9 +64,9 @@ class AssignOpTest {
Expect.equals(0xF8, x);
x |= 0xF00;
Expect.equals(0xFF8, x);
- x &=0xF0;
+ x &= 0xF0;
Expect.equals(0xF0, x);
- x ^=0x11;
+ x ^= 0x11;
Expect.equals(0xE1, x);
var y = 100;
@@ -89,6 +88,7 @@ class AssignOpTest {
static var f;
var instf;
}
+
main() {
for (int i = 0; i < 20; i++) {
AssignOpTest.testMain();

Powered by Google App Engine
This is Rietveld 408576698