diff options
author | Brett Cannon <bcannon@gmail.com> | 2006-08-25 02:59:59 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2006-08-25 02:59:59 (GMT) |
commit | 0b70cca9f8132b6fe03803abe9e89bd3a00a80ee (patch) | |
tree | 032e42eac6b0cf9538d10f468f820381806d1964 /Lib/test/list_tests.py | |
parent | db60d6e2aa45fdc9f5f560847238a120e8a34f04 (diff) | |
download | cpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.zip cpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.tar.gz cpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.tar.bz2 |
Remove usage of backticks.
Diffstat (limited to 'Lib/test/list_tests.py')
-rw-r--r-- | Lib/test/list_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/list_tests.py b/Lib/test/list_tests.py index 14b54c7..453c51c 100644 --- a/Lib/test/list_tests.py +++ b/Lib/test/list_tests.py @@ -37,7 +37,7 @@ class CommonTest(seq_tests.CommonTest): self.assertEqual(str(a0), str(l0)) self.assertEqual(repr(a0), repr(l0)) - self.assertEqual(`a2`, `l2`) + self.assertEqual(repr(a2), repr(l2)) self.assertEqual(str(a2), "[0, 1, 2]") self.assertEqual(repr(a2), "[0, 1, 2]") |