fix(Texthandler): Replace get_all with getall to match the Selector class

This commit is contained in:
Karim shoair
2026-03-17 21:53:17 +02:00
parent 980be18a2a
commit 136c389787
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -357,7 +357,7 @@ class TestTextHandlerAdvanced:
"""Test TextHandlers.extract() returns self"""
handlers = TextHandlers([TextHandler("a"), TextHandler("b")])
assert handlers.extract() is handlers
assert handlers.get_all() is handlers
assert handlers.getall() is handlers
class TestSelectorsAdvanced: