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

Unified Diff: tests/lib/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/typed_data/float32x4_cross_test.dart
diff --git a/tests/lib/typed_data/float32x4_cross_test.dart b/tests/lib/typed_data/float32x4_cross_test.dart
index 1bfeb5d126e5894817813e50b9a263b2d9eb5f53..e4f08516883eaaec52bd89c43826d4e7a69407ad 100644
--- a/tests/lib/typed_data/float32x4_cross_test.dart
+++ b/tests/lib/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