From 90b3b5ba167a184846f5a8e3207dbe8f924b4abd Mon Sep 17 00:00:00 2001 From: Nicholas Tindle Date: Sun, 8 Feb 2026 16:11:47 -0600 Subject: [PATCH] fix(backend): Fix misplaced section header in graph_test.py Move the _reassign_ids section comment to above the actual _reassign_ids tests, and label the combine() tests correctly. Co-Authored-By: Claude Opus 4.6 --- autogpt_platform/backend/backend/data/graph_test.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autogpt_platform/backend/backend/data/graph_test.py b/autogpt_platform/backend/backend/data/graph_test.py index ff49db531e..a1147c5464 100644 --- a/autogpt_platform/backend/backend/data/graph_test.py +++ b/autogpt_platform/backend/backend/data/graph_test.py @@ -466,7 +466,7 @@ def test_node_credentials_optional_with_other_metadata(): # ============================================================================ -# Tests for _reassign_ids credential clearing (Fix 3: SECRT-1772) +# Tests for CredentialsFieldInfo.combine() field propagation def test_combine_preserves_is_auto_credential_flag(): """ CredentialsFieldInfo.combine() must propagate is_auto_credential and @@ -526,6 +526,7 @@ def test_combine_preserves_regular_credential_defaults(): # ============================================================================ +# Tests for _reassign_ids credential clearing (Fix 3: SECRT-1772) def test_reassign_ids_clears_credentials_id():