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.

I'm using selenium RC with PHPunit and i have this problem. I'm trying to do assertEqual but this is the result:

Failed asserting that two strings are equal.
--- Expected
+++ Actual
@@ @@
 abc
 def

The step line:

$this->assertEquals("abc\ndef", $this->getValue("text"));

and "text" is "abc\ndef".

In firefox it's working ok. The problem is only with IE. In the result he doesn't tell me what is not equal..

share|improve this question

1 Answer

There's most likely a carriage return (\r) in there which PHPUnit's string diff output isn't displaying. Use addslashes() or serialize() to display the hidden characters.

$this->assertEquals(addslashes("abc\ndef"), addslashes($this->getValue("text")));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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