Commit 7b9ee097 authored by Tres Seaver's avatar Tres Seaver

Py3k compat: don't test backtick shorthand.

parent 52c13b71
......@@ -65,7 +65,6 @@ class TestPList(unittest.TestCase):
eq(str(u0), str(l0), "str(u0) == str(l0)")
eq(repr(u1), repr(l1), "repr(u1) == repr(l1)")
eq(`u2`, `l2`, "`u2` == `l2`")
# Test __cmp__ and __len__
......
......@@ -94,7 +94,6 @@ class PersistentMappingTests(unittest.TestCase):
eq(str(u0), str(l0), "str(u0) == str(l0)")
eq(repr(u1), repr(l1), "repr(u1) == repr(l1)")
eq(`u2`, `l2`, "`u2` == `l2`")
# Test __cmp__ and __len__
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment