bugraoz93 commented on code in PR #51424:
URL: https://github.com/apache/airflow/pull/51424#discussion_r2129244272
##########
airflow-core/tests/unit/api_fastapi/core_api/routes/public/test_assets.py:
##########
@@ -256,7 +256,7 @@ def test_should_respond_200(self, test_client, session):
"extra": {"foo": "bar"},
"created_at": tz_datetime_format,
"updated_at": tz_datetime_format,
- "consuming_dags": [],
+ "scheduled_dags": [],
Review Comment:
We should apply this to the entire file
```suggestion
"scheduled_dags": [],
"consuming_tasks": [],
```
##########
airflow-ctl/tests/airflow_ctl/api/test_operations.py:
##########
@@ -125,7 +125,7 @@ class TestAssetsOperations:
extra={"extra": "extra"},
created_at=datetime.datetime(2024, 12, 31, 23, 59, 59),
updated_at=datetime.datetime(2025, 1, 1, 0, 0, 0),
- consuming_dags=[],
+ scheduled_dags=[],
Review Comment:
```suggestion
scheduled_dags=[],
consuming_tasks=[],
```
--
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]