Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
NSubstitute.Exceptions.CallNotReceivedException: Expected to receive call:   
  PromptForYesNo("Sums insured business interruption period is 653 month(s) longer than fire indemnity period.", any String)   
Actually received (non-matching arguments indicated with '*' characters):   
  PromptForYesNo(*"Sums insured business interruption period is 653 month(s) longer than fire indemnity period.
"*, "Do you want to save?")

Can anyone see what the problem is? To me the strings looks identical and they are, they come from the same object property.

I would appreciate some info on why this fails, thanks.

share|improve this question
2  
Assuming you've copy and pasted that accurately, the second one ends with a line-break that the first one doesn't - could that be it? If that's OK and you want to ignore it then you could try .Trim()ming the strings before you compare them. – Rup Oct 11 '11 at 10:37
You are correct, there is actually a line break there. Thanks! – Johan Oct 11 '11 at 10:44

closed as too localized by Josh Caswell, hjpotter92, hakre, KatieK, DaveRandom Mar 1 at 17:47

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 0 down vote accepted

There was a line break that I didnt notice..

thanks Rup

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.