Commit 33b6a31c authored by Georg Brandl's avatar Georg Brandl

#8768: name test method properly so that it gets executed.

parent 04c837e4
......@@ -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)
......
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