Fixup computeboids translation error.

There was a - that changed to a + while converting. Fixed.

Change-Id: Ic50a04624c5f4efdfc114459ccd5f42fc53c3ca2
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/20629
Reviewed-by: David Neto <dneto@google.com>
diff --git a/test/compute_boids.wgsl b/test/compute_boids.wgsl
index 4f2f44f..c937df1 100644
--- a/test/compute_boids.wgsl
+++ b/test/compute_boids.wgsl
@@ -114,7 +114,7 @@
   }
   if (cMassCount > 0) {
     cMass =
-      (cMass / vec2<f32>(cast<f32>(cMassCount), cast<f32>(cMassCount))) + vPos;
+      (cMass / vec2<f32>(cast<f32>(cMassCount), cast<f32>(cMassCount))) - vPos;
   }
   if (cVelCount > 0) {
     cVel = cVel / vec2<f32>(cast<f32>(cVelCount), cast<f32>(cVelCount));