amoghrajesh commented on code in PR #45448:
URL: https://github.com/apache/airflow/pull/45448#discussion_r1905254035


##########
task_sdk/tests/execution_time/test_task_runner.py:
##########
@@ -746,6 +746,13 @@ def test_get_connection_from_context(self, mocked_parse, 
make_ti_context, mock_s
             extra='{"extra_key": "extra_value"}',
         )
 
+        # Try and access the extra_dejson for conn
+        dejson_from_conn = conn_from_context.extra_dejson
+        assert dejson_from_conn == {"extra_key": "extra_value"}
+
+        # Try and access inner keys of dejson
+        assert conn_from_context.extra_dejson["extra_key"] == "extra_value"

Review Comment:
   Yeah, let me remove it



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to