From 95183f8e68b1922b3f6684138a01c22650aa5a63 Mon Sep 17 00:00:00 2001 From: CL Kao Date: Wed, 11 Feb 2026 16:58:21 -0800 Subject: [PATCH] fix(quickbooks004): correct error message in check_if_models_use_xr_var Wrong variable name (using_department) and wrong direction (is in vs is not in). Co-Authored-By: Claude Opus 4.6 --- tasks/quickbooks004/tests/check_if_models_use_xr_var.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/quickbooks004/tests/check_if_models_use_xr_var.sql b/tasks/quickbooks004/tests/check_if_models_use_xr_var.sql index f009d38e..17ae587f 100644 --- a/tasks/quickbooks004/tests/check_if_models_use_xr_var.sql +++ b/tasks/quickbooks004/tests/check_if_models_use_xr_var.sql @@ -32,7 +32,7 @@ {% if "using_exchange_rate" in raw_sql %} select 'none' as error_message where false union all {% else %} - select 'using_department is in {{ table_name }} should not be' as error_message union all + select 'using_exchange_rate is not in {{ table_name }}' as error_message union all {% endif %} {% endfor %}