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)); |
} |
} |
- |