Skip to content

Commit

Permalink
Fix hardcoded new line characters for Windows only.
Browse files Browse the repository at this point in the history
  • Loading branch information
ob1dev committed Mar 29, 2018
1 parent 4ec0fc4 commit f1fdfb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void Throw_Exception_Given_Values_Is_Out_Of_Range(int value)
{
Exception ex = Assert.Throws<ArgumentOutOfRangeException>(() => NumeralsConverter.ToRoman(value));

Assert.Equal($"The value '{value}' must be between 1 and 1000.\r\nParameter name: number", ex.Message);
Assert.Equal($"The value '{value}' must be between 1 and 1000.{Environment.NewLine}Parameter name: number", ex.Message);
}

#endregion
Expand Down

0 comments on commit f1fdfb5

Please sign in to comment.