diff --git a/core/dbt/events/types.py b/core/dbt/events/types.py index 5a076367b13..b8ce80aa5de 100644 --- a/core/dbt/events/types.py +++ b/core/dbt/events/types.py @@ -395,7 +395,7 @@ def code(self) -> str: def message(self) -> str: description = ( f"The `{self.deprecated_path}` config has been renamed to `{self.exp_path}`. " - "Please update your `dbt_project.yml` configuration to reflect this change." + "Please see https://docs.getdbt.com/docs/build/data-tests#new-data_tests-syntax for more information." ) return line_wrap_message(warning_tag(f"Deprecated functionality\n\n{description}"))