fix: use empty settings object in Update Connections test

Use empty settings {} instead of current.settings to avoid potential
filtering issues that could cause API validation failures.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
czlonkowski
2025-10-04 20:57:11 +02:00
parent b27d245dab
commit 02574e5555

View File

@@ -176,7 +176,7 @@ describe('Integration: handleUpdateWorkflow', () => {
name: current.name, // Required by n8n API
nodes: current.nodes, // Required by n8n API
connections: {},
settings: current.settings // Required by n8n API
settings: {} // Empty settings (safe for all n8n versions)
},
mcpContext
);