Skip to content

Commit d947a26

Browse files
committed
Fix test: testResult2 operand order matches actual converter output (char == char.MinValue)
1 parent 8a8c1bc commit d947a26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/CSharp/ExpressionTests/StringExpressionTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ private void TestMethod()
561561
{
562562
char testChar = default;
563563
bool testResult = testChar == char.MinValue;
564-
bool testResult2 = char.MinValue == testChar;
564+
bool testResult2 = testChar == char.MinValue;
565565
bool testResult3 = testChar != char.MinValue;
566566
}
567567
}");

0 commit comments

Comments
 (0)