From 0095629b20d9af2c881fb7284938c5b68bb600cd Mon Sep 17 00:00:00 2001 From: Neil McNeight Date: Thu, 20 Sep 2018 10:21:05 -0500 Subject: [PATCH] Fix the use of '%' in ParseTests --- UnitsNet.Tests/CustomCode/ParseTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UnitsNet.Tests/CustomCode/ParseTests.cs b/UnitsNet.Tests/CustomCode/ParseTests.cs index 3fb03de1a0..44d29e7316 100644 --- a/UnitsNet.Tests/CustomCode/ParseTests.cs +++ b/UnitsNet.Tests/CustomCode/ParseTests.cs @@ -204,7 +204,7 @@ public void TryParseLengthUnitAbbreviationSpecialCharacters(string s) [InlineData("@")] [InlineData("#")] [InlineData("$")] - [InlineData("%")] + [InlineData("%%")] [InlineData("^")] [InlineData("&")] [InlineData("*")] @@ -235,4 +235,4 @@ private static string AssertExceptionAndGetFullTypeName(Action code) } } -} \ No newline at end of file +}