Skip to content

Commit

Permalink
Changed "Lenght" to "Length"
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamilist committed Oct 30, 2016
1 parent f5f1f2e commit 202463a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SchoolOfCSharp/Arrays/Arrays.cs
Expand Up @@ -7,12 +7,12 @@ namespace Arrays
public class Arrays
{
[TestMethod]
public void ArrayLenght()
public void ArrayLength()
{
int[] IntArray = new int[5];
const int expectedLenght = 5;
const int expectedLength = 5;

Assert.AreEqual(IntArray.Length, expectedLenght);
Assert.AreEqual(IntArray.Length, expectedLength);
}

[TestMethod]
Expand Down

0 comments on commit 202463a

Please sign in to comment.