Skip to content

Commit cb42176

Browse files
committed
Code style fixes
***NO_CI***
1 parent b5ce979 commit cb42176

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Tests/NFUnitTestSystemLib/UnitTestStringTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ public void MakeSureNoContainsChecksGoOutOfRange_StringComparison()
469469
{
470470
Assert.IsTrue(s1.Contains(s2));
471471
}
472-
catch(ArgumentOutOfRangeException)
472+
catch (ArgumentOutOfRangeException)
473473
{
474474
// this is the intended outcome at some point
475475
Assert.IsTrue(true);
@@ -767,7 +767,6 @@ public static void EndsWith_NullInStrings()
767767
public static void ZeroLengthEndsWith_Char()
768768
{
769769
// Test of EndsWith with chars
770-
771770
var a = new char[3];
772771

773772
string s1 = new string(a);

0 commit comments

Comments
 (0)