Revanth14 commented on code in PR #67626: URL: https://github.com/apache/airflow/pull/67626#discussion_r3315543641
########## providers/dbt/cloud/tests/unit/dbt/cloud/triggers/test_dbt.py: ########## @@ -18,12 +18,14 @@ import asyncio import time +from contextlib import suppress from unittest import mock -from unittest.mock import AsyncMock +from unittest.mock import AsyncMock, MagicMock import pytest from airflow.providers.dbt.cloud.hooks.dbt import DbtCloudHook, DbtCloudJobRunStatus +from airflow.providers.dbt.cloud.triggers import dbt as dbt_trigger_module Review Comment: Done, removed this import after adjusting the test to patch `airflow.providers.dbt.cloud.triggers.dbt.time` directly. -- 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]
