Use a better name for the LxmlLinkExtractor subclassing test

This commit is contained in:
Adrián Chaves 2019-12-18 12:09:03 +01:00
parent ee9881d270
commit 174769a3f0
1 changed files with 2 additions and 2 deletions

View File

@ -517,10 +517,10 @@ class LxmlLinkExtractorTestCase(Base.LinkExtractorTestCase):
LxmlLinkExtractor()
self.assertEqual(len(warnings), 0)
class SubclassedItem(LxmlLinkExtractor):
class SubclassedLxmlLinkExtractor(LxmlLinkExtractor):
pass
SubclassedItem()
SubclassedLxmlLinkExtractor()
self.assertEqual(len(warnings), 0)