From 7bedb48fb4ef9b858de157974721642a585c9bb3 Mon Sep 17 00:00:00 2001 From: Kshitij Aranke Date: Tue, 26 Mar 2024 13:15:35 +0000 Subject: [PATCH] Fix info message for TestsConfigDeprecation --- core/dbt/events/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}"))