From 505509117e80b71d6ac40726b2b64a96ea5d6936 Mon Sep 17 00:00:00 2001 From: algochoi <86622919+algochoi@users.noreply.github.com> Date: Tue, 14 Feb 2023 15:50:46 -0500 Subject: [PATCH] Add parallelism to new json overlay test --- netdeploy/networkTemplates_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netdeploy/networkTemplates_test.go b/netdeploy/networkTemplates_test.go index b37472b2e3..a7990a9cf0 100644 --- a/netdeploy/networkTemplates_test.go +++ b/netdeploy/networkTemplates_test.go @@ -110,6 +110,8 @@ type overlayTestStruct struct { // TestJsonOverlay ensures that encoding/json will only clobber fields present in the json and leave other fields unchanged func TestJsonOverlay(t *testing.T) { partitiontest.PartitionTest(t) + t.Parallel() + before := overlayTestStruct{A: "one", B: "two"} setB := "{\"B\":\"other\"}" dec := json.NewDecoder(strings.NewReader(setB))