From 2997d562d507cb21b9875ac67cc995a0447a5cf9 Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sat, 14 Feb 2026 03:34:41 +0200 Subject: [PATCH] test: remove irrelevent test --- tests/parser/test_general.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/parser/test_general.py b/tests/parser/test_general.py index 808b65d..26f6e6c 100644 --- a/tests/parser/test_general.py +++ b/tests/parser/test_general.py @@ -170,10 +170,6 @@ class TestErrorHandling: with pytest.raises(ValueError): _ = Selector(adaptive=False) - # Invalid argument types - with pytest.raises(TypeError): - _ = Selector(root="ayo", adaptive=False) - with pytest.raises(TypeError): _ = Selector(content=1, adaptive=False)