From 84b5bb72a4338dcedd0f0271df48ad7efbcd6534 Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Fri, 24 Apr 2026 22:16:36 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20tests/test=5Fdispatcher.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_dispatcher.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_dispatcher.py b/tests/test_dispatcher.py index 21f3495..13395e6 100644 --- a/tests/test_dispatcher.py +++ b/tests/test_dispatcher.py @@ -19,5 +19,7 @@ class TestDispatcher(unittest.TestCase): dispatcher = Dispatcher() params ={'param': True} dispatcher.register('name', comparator, action) - result = dispatcher(params) + method = dispatcher(params) + print(method) + result = method(params) self.assertTrue(result)