You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See:
http://stackoverflow.com/questions/6124180/python-nose-tests-actually-the-error-
is-from-mox-print-out-errors-one-character
My Fix:
Adding this line to the top of str method of ExpectedMethodCallsError in mox.py
fixes the problem (or this symptom anyway):
if isinstance(self._expected_methods, str):
self._expected_methods = self._expected_methods.split("\n")
Original issue reported on code.google.com by [email protected] on 26 May 2011 at 9:01
The text was updated successfully, but these errors were encountered:
Hm, this is a strange one, and it seems more like a bandaid than a proper fix.
The real problem seems to be that the self._expected_calls_queue is being
populated with a string somehow, instead of being used as a deque().
Original issue reported on code.google.com by
[email protected]
on 26 May 2011 at 9:01The text was updated successfully, but these errors were encountered: