From 6758bfd6f7306dbf3ba35a76a03ab81cd3d25349 Mon Sep 17 00:00:00 2001 From: Carrie <39535726+aerinkayne@users.noreply.github.com> Date: Thu, 16 Jan 2025 12:46:04 -0500 Subject: [PATCH] LEAF TEST 4620 update form test - parentID not required data (#31) --- API-tests/formStack_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/API-tests/formStack_test.go b/API-tests/formStack_test.go index 59abac54..fb4ec6e8 100644 --- a/API-tests/formStack_test.go +++ b/API-tests/formStack_test.go @@ -25,7 +25,6 @@ func postNewForm() string { postData.Set("CSRFToken", CsrfToken) postData.Set("name", "Test New Form") postData.Set("description", "Test New Form Description") - postData.Set("parentID", "") res, _ := client.PostForm(RootURL+`api/formEditor/new`, postData) bodyBytes, _ := io.ReadAll(res.Body)