From 02574e5555719a000e1091da1bf00939d3b3088c Mon Sep 17 00:00:00 2001 From: czlonkowski <56956555+czlonkowski@users.noreply.github.com> Date: Sat, 4 Oct 2025 20:57:11 +0200 Subject: [PATCH] fix: use empty settings object in Update Connections test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- tests/integration/n8n-api/workflows/update-workflow.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/n8n-api/workflows/update-workflow.test.ts b/tests/integration/n8n-api/workflows/update-workflow.test.ts index 62825ab..fe30f91 100644 --- a/tests/integration/n8n-api/workflows/update-workflow.test.ts +++ b/tests/integration/n8n-api/workflows/update-workflow.test.ts @@ -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 );