summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsmiddlek <smiddlek@b1010a0a-674b-0410-b734-77272b80c875>2010-10-20 18:35:14 +0000
committersmiddlek <smiddlek@b1010a0a-674b-0410-b734-77272b80c875>2010-10-20 18:35:14 +0000
commit9011fcf628196660fda01dc4d1ffc23b5315dfe0 (patch)
treea3f91860e9e00750248e9e1294aa7efb7f39eab9
parentaed51a5f2e536a19caa69e390778c20be9c3b593 (diff)
downloadmox-9011fcf628196660fda01dc4d1ffc23b5315dfe0.tar.gz
Clean up missed conversion from _expected_seq to _expected_list
git-svn-id: http://pymox.googlecode.com/svn/trunk@61 b1010a0a-674b-0410-b734-77272b80c875
-rwxr-xr-xmox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mox.py b/mox.py
index 6b37f37..e4535a6 100755
--- a/mox.py
+++ b/mox.py
@@ -1621,7 +1621,7 @@ class SameElementsAs(Comparator):
return expected == actual
def __repr__(self):
- return '<sequence with same elements as \'%s\'>' % self._expected_seq
+ return '<sequence with same elements as \'%s\'>' % self._expected_list
class And(Comparator):