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

Unified Diff: tests/lib_strong/typed_data/float32x4_cross_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/lib_strong/typed_data/float32x4_cross_test.dart
diff --git a/tests/lib_strong/typed_data/float32x4_cross_test.dart b/tests/lib_strong/typed_data/float32x4_cross_test.dart
index 32684883a55af45e5c94f93a1e08d4567a033e7e..fe99a2d6a39ff2161705b050bde7a090949d5c62 100644
--- a/tests/lib_strong/typed_data/float32x4_cross_test.dart
+++ b/tests/lib_strong/typed_data/float32x4_cross_test.dart
@@ -16,7 +16,7 @@ Float32x4 cross(Float32x4 a, Float32x4 b) {
t0 = a.shuffle(Float32x4.ZXYW);
t1 = b.shuffle(Float32x4.YZXW);
var r = t0 * t1;
- return l-r;
+ return l - r;
}
void testCross(Float32x4 a, Float32x4 b, Float32x4 r) {
@@ -44,7 +44,6 @@ main() {
testCross(y, y, zero);
testCross(z, z, zero);
testCross(x, y, cross(-y, x));
- testCross(x, y+z, cross(x, y) + cross(x, z));
+ testCross(x, y + z, cross(x, y) + cross(x, z));
}
}
-

Powered by Google App Engine
This is Rietveld 408576698