diff --git a/tests/test_dispatcher.py b/tests/test_dispatcher.py index c48d9b6..bffb790 100644 --- a/tests/test_dispatcher.py +++ b/tests/test_dispatcher.py @@ -20,6 +20,8 @@ class TestDispatcher(unittest.TestCase): params ={'param': 'value'} dispatcher.register('name', comparator, action) method = dispatcher(params) - print(method) result = method(params) self.assertEqual(result, 'value') + + def test_sub(self): + pass \ No newline at end of file