summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_set.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-08-01 06:44:46 (GMT)
committerGeorg Brandl <georg@python.org>2010-08-01 06:44:46 (GMT)
commit33b6a31c1817ea4c6220e274c425ca7ced061843 (patch)
tree269ad053a1314393feaf5856c822475272d86d4a /Lib/test/test_set.py
parent04c837e4b406ca77042ff3389cdeb85d9fdb4943 (diff)
downloadcpython-33b6a31c1817ea4c6220e274c425ca7ced061843.zip
cpython-33b6a31c1817ea4c6220e274c425ca7ced061843.tar.gz
cpython-33b6a31c1817ea4c6220e274c425ca7ced061843.tar.bz2
#8768: name test method properly so that it gets executed.
Diffstat (limited to 'Lib/test/test_set.py')
-rw-r--r--Lib/test/test_set.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_set.py b/Lib/test/test_set.py
index 627c48c..ff88a34 100644
--- a/Lib/test/test_set.py
+++ b/Lib/test/test_set.py
@@ -796,7 +796,7 @@ class TestBasicOps(unittest.TestCase):
result = self.set ^ self.set
self.assertEqual(result, empty_set)
- def checkempty_symmetric_difference(self):
+ def test_empty_symmetric_difference(self):
result = self.set ^ empty_set
self.assertEqual(result, self.set)