summaryrefslogtreecommitdiff
path: root/Lib/test/test_compare.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_compare.py')
-rw-r--r--Lib/test/test_compare.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_compare.py b/Lib/test/test_compare.py
index 1d8b947672..bc833eacda 100644
--- a/Lib/test/test_compare.py
+++ b/Lib/test/test_compare.py
@@ -45,7 +45,7 @@ def test():
else:
print "%s != %s" % (a, b)
# Ensure default comparison compares id() of args
- L = [None]
+ L = []
for i in range(10):
L.insert(len(L)/2, Empty())
for a in L: