Skip to content

Commit 99b1ce6

Browse files
committed
Removed newlines from test methods
1 parent 2965335 commit 99b1ce6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

MLAPI.Tests/NetworkingManagerComponents/Binary/BitStreamTest.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ public class BitStreamTest
1111

1212
[Test]
1313
public void TestEmptyStream()
14-
{
15-
14+
{
1615
BitStream bitStream = new BitStream(new byte[100]);
1716
// ideally an empty stream should take no space
1817
Assert.That(bitStream.Length, Is.EqualTo(0));
@@ -21,7 +20,6 @@ public void TestEmptyStream()
2120
[Test]
2221
public void TestBool()
2322
{
24-
2523
BitStream bitStream = new BitStream(new byte[100]);
2624
bitStream.WriteBit(true);
2725

0 commit comments

Comments
 (0)