(self)
| 3237 | super().tearDown() |
| 3238 | |
| 3239 | def test_find_with_mutating(self): |
| 3240 | for cls in [MutationDeleteElementPath, MutationClearElementPath]: |
| 3241 | with self.subTest(cls): |
| 3242 | e = ET.Element('foo') |
| 3243 | e.extend([ET.Element('bar')]) |
| 3244 | e.find(cls(e, 'x')) |
| 3245 | |
| 3246 | def test_find_with_error(self): |
| 3247 | e = ET.Element('foo') |