Skip to content

Commit 24f457e

Browse files
committed
fix another format error
1 parent e7b9b61 commit 24f457e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

com.unity.netcode.gameobjects/Tests/Runtime/NetworkTransformAnticipationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ public void AssertQuaternionsAreEquivalent(Quaternion a, Quaternion b)
396396
}
397397
public void AssertVectorsAreEquivalent(Vector3 a, Vector3 b)
398398
{
399-
Assert.AreEqual(a.x, b.x, 0.001, $"Vectors were not equal. Expected: {a}, but was {b}");
399+
Assert.AreEqual(a.x, b.x, 0.001, $"Vectors were not equal. Expected: {a}, but was {b}");
400400
Assert.AreEqual(a.y, b.y, 0.001, $"Vectors were not equal. Expected: {a}, but was {b}");
401401
Assert.AreEqual(a.z, b.z, 0.001, $"Vectors were not equal. Expected: {a}, but was {b}");
402402
}

0 commit comments

Comments
 (0)