We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28d56ad commit c37f08aCopy full SHA for c37f08a
tests/services/base_service_test.py
@@ -508,10 +508,9 @@ def test_parameter_forwarding_for_all_methods(self):
508
509
# Call the method if it has parameters
510
if kwargs:
511
- try:
512
- method(**kwargs)
513
- except Exception:
514
- pass # We expect it might fail, we just want to check the call
+ method(
+ **kwargs
+ ) # We expect it might fail, we just want to check the call
515
516
# Verify operator.call was invoked and parameters forwarded correctly
517
if mock_operator_instance.call.called:
0 commit comments