From 80b2a47d60506344eaadb08f1d4326beaa5104c6 Mon Sep 17 00:00:00 2001 From: Kshitij Aranke Date: Wed, 27 Mar 2024 14:47:57 +0000 Subject: [PATCH] Fix info message for TestsConfigDeprecation (#9823) --- 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}"))