Skip to content

Commit fa329a3

Browse files
author
jeffshumphreys@gmail.com
committed
Fixed error in test where I was expecting the wrong output due to me forgetting it was case sensitive.
1 parent b9c165d commit fa329a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MySQLCLRFunctionsTests/StringTransformTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class StringTransformTests
99
public void ReplaceMatchXTest()
1010
{
1111
const string input = "ThisIsIt";
12-
const string validoutput = "Th!s!s!t";
12+
const string validoutput = "Th!sIsI!";
1313
var output = ReplaceMatchX(input, "[it]", "!");
1414
Assert.Equal(expected: validoutput, output);
1515
}

0 commit comments

Comments
 (0)