From 57d4d33438ee7c9c26b2f1111a95d5c9af5e90e9 Mon Sep 17 00:00:00 2001 From: Raffi Utama Date: Fri, 29 Sep 2023 02:27:57 +0700 Subject: [PATCH] Fix parsing test nodes when using the custom load method (LoadMethod.CUSTOM) (#563) This PR fixes parsing test nodes when using LoadMethod.CUSTOM, since it didn't return any test nodes. This issue surfaced after #543. Closes: #561 (cherry picked from commit 0123c3e19422bf665eca6a489a1248cc7ad17de9) --- tests/dbt/test_graph.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/dbt/test_graph.py b/tests/dbt/test_graph.py index f30fda719..cc43c6a6c 100644 --- a/tests/dbt/test_graph.py +++ b/tests/dbt/test_graph.py @@ -389,4 +389,3 @@ def test_update_node_dependency_test_not_exist(): for _, nodes in dbt_graph.filtered_nodes.items(): assert nodes.has_test is False -