Using nUnit to test the output (currency formatting) for a specific culture but we are getting the following result.
Fail: Formatting currency amount
String lengths are both 11. Strings differ at index 2.
Expected: "12 765,87 €"
But was: "12 765,87 €"
-------------^
We can't see the difference between the strings. Our expected result uses a "Space" character.
Is there a different space character that we can put into the accepted result to get the test to pass?
By the way, the tested culture is fr-FR.
Edit: Thanks Adam you are spot on with the unicode character. We have changed our expected results and now each Unit test passes.