We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0f9e01 commit 57707e7Copy full SHA for 57707e7
1 file changed
workers/tests/unittest_proxy/test_dispatcher.py
@@ -92,7 +92,8 @@ def test_on_logging_levels_and_categories(self, mock_is_system, mock_rpc_log,
92
expected_category = dispatcher_module._LOG_CATEGORY_USER
93
94
# Verify RpcLog was initialized with correct mapped values
95
- # We use call_args to verify kwargs, ignoring any extra kwargs like invocation_id if present
+ # We use call_args to verify kwargs, ignoring any extra kwargs
96
+ # like invocation_id if present
97
args, kwargs = mock_rpc_log.call_args
98
self.assertEqual(kwargs['level'], expected)
99
self.assertEqual(kwargs['log_category'], expected_category)
0 commit comments