Skip to content

Commit 47f69b8

Browse files
committed
style: apply black formatting to connector test files
Run `make format` to ensure code style compliance per development guide.
1 parent e099a5c commit 47f69b8

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

integration/combination/test_connectors.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ def test_connector_by_invoking_a_function_with_eventbus(self, template_file_path
5353
def verify_lambda_invocation(self, lambda_function_name):
5454
"""Verify Lambda function invocation with retry logic."""
5555
response = self.client_provider.lambda_client.invoke(
56-
FunctionName=lambda_function_name,
57-
InvocationType="RequestResponse",
58-
Payload="{}"
56+
FunctionName=lambda_function_name, InvocationType="RequestResponse", Payload="{}"
5957
)
6058
self.assertEqual(response.get("StatusCode"), 200)
6159
self.assertEqual(response.get("FunctionError"), None)
@@ -74,9 +72,7 @@ def tearDown(self):
7472
def verify_lambda_invocation(self, lambda_function_name):
7573
"""Verify Lambda function invocation with retry logic."""
7674
response = self.client_provider.lambda_client.invoke(
77-
FunctionName=lambda_function_name,
78-
InvocationType="RequestResponse",
79-
Payload="{}"
75+
FunctionName=lambda_function_name, InvocationType="RequestResponse", Payload="{}"
8076
)
8177
self.assertEqual(response.get("StatusCode"), 200)
8278
self.assertEqual(response.get("FunctionError"), None)

integration/combination/test_connectors_event_rule_eb.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,7 @@ def test_connector_event_rule_eb_by_invoking_a_function(self, template_file_path
5858
def verify_lambda_invocation(self, lambda_function_name):
5959
"""Verify Lambda function invocation with retry logic."""
6060
response = self.client_provider.lambda_client.invoke(
61-
FunctionName=lambda_function_name,
62-
InvocationType="RequestResponse",
63-
Payload="{}"
61+
FunctionName=lambda_function_name, InvocationType="RequestResponse", Payload="{}"
6462
)
6563
self.assertEqual(response.get("StatusCode"), 200)
6664
self.assertEqual(response.get("FunctionError"), None)

0 commit comments

Comments
 (0)