Closed joprice closed 2 months ago
Calling Assert.AreEqual(1, 2) results in an exception like Exception: Expected: $2 - Actual: $1, where an extra $ appears before the value. Similarly, when calling System.Enum.Parse, an extra dollar sign prefixes the type name.
Assert.AreEqual(1, 2)
Exception: Expected: $2 - Actual: $1
$
System.Enum.Parse
Calling
Assert.AreEqual(1, 2)
results in an exception likeException: Expected: $2 - Actual: $1
, where an extra$
appears before the value. Similarly, when callingSystem.Enum.Parse
, an extra dollar sign prefixes the type name.