summaryrefslogtreecommitdiff
path: root/test/lib/testing.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/testing.py')
-rw-r--r--test/lib/testing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/testing.py b/test/lib/testing.py
index d6338cf10..cdd5ee258 100644
--- a/test/lib/testing.py
+++ b/test/lib/testing.py
@@ -723,12 +723,12 @@ class AssertsExecutionResults(object):
numbers of rows that the test suite manipulates.
"""
- class frozendict(dict):
+ class immutabledict(dict):
def __hash__(self):
return id(self)
found = util.IdentitySet(result)
- expected = set([frozendict(e) for e in expected])
+ expected = set([immutabledict(e) for e in expected])
for wrong in itertools.ifilterfalse(lambda o: type(o) == cls, found):
fail('Unexpected type "%s", expected "%s"' % (