From b1cd5c5a82e0438e546302bf3d68543b7411ebca Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sun, 28 Dec 2025 00:16:37 +0200 Subject: [PATCH] test: fix old assert test --- tests/fetchers/test_validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fetchers/test_validator.py b/tests/fetchers/test_validator.py index fd3b557..209fae0 100644 --- a/tests/fetchers/test_validator.py +++ b/tests/fetchers/test_validator.py @@ -23,7 +23,7 @@ class TestValidators: assert config.max_pages == 2 assert config.headless is True assert config.timeout == 30000 - assert isinstance(config.proxy, tuple) # Should be converted to tuple + assert isinstance(config.proxy, dict) def test_playwright_config_invalid_max_pages(self): """Test PlaywrightConfig with invalid max_pages"""