We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 455a3fe + 75e0c8b commit e8262d1Copy full SHA for e8262d1
Tests/BoxingTests/Kernel.cs
@@ -17,7 +17,7 @@ protected override void Run()
17
{
18
TestBoxingChar();
19
TestBoxingInt();
20
- //TestBoxingColorToString();
+ TestBoxingColorToString();
21
22
TestController.Completed();
23
}
@@ -55,7 +55,7 @@ private void TestBoxingInt()
55
private void TestBoxingColorToString()
56
57
object xColor = Color.Blue;
58
- Assert.IsTrue(xColor.ToString() == "Color[Blue]", "Color.ToString doesn't work on boxed Color!");
+ Assert.IsTrue(xColor.ToString() == "Color [Blue]", "Color.ToString doesn't work on boxed Color!");
59
60
61
0 commit comments