From 12e6a9e6aa9ac1c33c6f249989cdad99bf2e0ab1 Mon Sep 17 00:00:00 2001
From: Malte Bauch <malte.bauch@stud.h-da.de>
Date: Thu, 26 Jan 2023 14:09:34 +0100
Subject: [PATCH] Parallel for `pnd.Confirm` test case

---
 controller/nucleus/principalNetworkDomain_test.go | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/controller/nucleus/principalNetworkDomain_test.go b/controller/nucleus/principalNetworkDomain_test.go
index 9d07cfc93..2cdeb3857 100644
--- a/controller/nucleus/principalNetworkDomain_test.go
+++ b/controller/nucleus/principalNetworkDomain_test.go
@@ -983,7 +983,9 @@ func Test_pndImplementation_Confirm(t *testing.T) {
 	}
 
 	for _, tt := range tests {
+		tt := tt
 		t.Run(tt.name, func(t *testing.T) {
+			t.Parallel()
 			sbiService := NewGenericService[southbound.SouthboundInterface]()
 			networkElementService := NewNetworkElementServiceMock()
 
-- 
GitLab