We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dd8c1d commit ac7e46dCopy full SHA for ac7e46d
com.unity.netcode.gameobjects/Tests/Editor/Serialization/FastBufferReaderTests.cs
@@ -1589,7 +1589,7 @@ public unsafe void WhenUsingArraySegment_ConstructorHonorsArraySegmentConfigurat
1589
1590
var readerArray = reader.ToArray();
1591
Assert.True(readerArray.Length == bytes.Length - 1, $"Array of reader should have a length of {bytes.Length - 1} but was {readerArray.Length}!");
1592
- for(int i = 0; i < readerArray.Length; i++)
+ for (int i = 0; i < readerArray.Length; i++)
1593
{
1594
Assert.True(bytes[i + 1] == readerArray[i], $"Value of {nameof(readerArray)} at index {i} is {readerArray[i]} but should be {bytes[i + 1]}!");
1595
}
0 commit comments