Skip to content

Commit d038168

Browse files
Fix newlines in assertion
1 parent 25b2ce9 commit d038168

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Tests/CSharp/StatementTests/MethodStatementTests.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1756,7 +1756,6 @@ public partial class TestClass
17561756
{
17571757
private int[] _items = new int[] { 1 };
17581758
public int get_Item(int index)
1759-
17601759
{
17611760
return _items[index];
17621761
}
@@ -1765,10 +1764,8 @@ public void set_Item(int index, int value)
17651764
_items[index] = value;
17661765
}
17671766
1768-
17691767
private string[] _strItems = new string[] { ""Hello"" };
17701768
public string get_StrItem(int index)
1771-
17721769
{
17731770
return _strItems[index];
17741771
}
@@ -1777,7 +1774,6 @@ public void set_StrItem(int index, string value)
17771774
_strItems[index] = value;
17781775
}
17791776
1780-
17811777
public void AllAssignmentOperators()
17821778
{
17831779
set_Item(0, get_Item(0) + 2);

0 commit comments

Comments
 (0)