Skip to content

Commit

Permalink
Slight cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
quajak committed Feb 1, 2019
1 parent 0dbfd66 commit 42aacad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/Kernels/Cosmos.Compiler.Tests.Bcl/System/ArrayTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static void Execute()
{
error = true;
}
Assert.IsTrue(error && y == 2, "Index out of range exception works correctly for too large positions: " + 2);
Assert.IsTrue(error && y == 2, "Index out of range exception works correctly for too large positions.");
error = false;
try
{
Expand All @@ -64,7 +64,7 @@ public static void Execute()
{
error = true;
}
Assert.IsTrue(error && y == 2, "Index out of range exception works correctly for too small positions: " + y);
Assert.IsTrue(error && y == 2, "Index out of range exception works correctly for too small positions.");

}
}
Expand Down

0 comments on commit 42aacad

Please sign in to comment.