From 758d88e0ba981bfbf175504d495b0c57c7d07f1f Mon Sep 17 00:00:00 2001 From: Evgeniy Blinov Date: Sat, 2 Mar 2024 19:55:33 +0300 Subject: [PATCH] fix test --- tests/units/test_proxy_module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/units/test_proxy_module.py b/tests/units/test_proxy_module.py index bc59e48..c88b616 100644 --- a/tests/units/test_proxy_module.py +++ b/tests/units/test_proxy_module.py @@ -596,7 +596,7 @@ def test_context_manager_with_empty_breackets_when_exception(exception_type): ) def test_context_manager_with_just_ellipsis_when_escaped_by_default_exception(exception_type): with escape(...): - raise exception_type(text) + raise exception_type('text') @pytest.mark.parametrize(