diff --git a/integration-tests/application_tests/application_test.go b/integration-tests/application_tests/application_test.go
index 9b3797a5540cb2c42231729a68b7fd6c6635c6e0..bb2d89481caccaffcd3e8172cebb7abda14cc3db 100644
--- a/integration-tests/application_tests/application_test.go
+++ b/integration-tests/application_tests/application_test.go
@@ -44,7 +44,7 @@ var defaultSDNConfig string
 
 var application *Application
 
-func TestMain(m *testing.M) {
+func TestMain(m *testing.M) { //nolint:staticcheck
 	localConn, localCtx, err := integration_test_utils.CreateSecureConnection()
 	if err != nil {
 		fmt.Println(err.Error())
diff --git a/integration-tests/example_tests/example_test.go b/integration-tests/example_tests/example_test.go
index 03f52081b1fd0c72be24cb0ae74cc4411a899537..9ce5e5a3da57bd31b20bafea3aafbf4b5b62e406 100644
--- a/integration-tests/example_tests/example_test.go
+++ b/integration-tests/example_tests/example_test.go
@@ -18,7 +18,7 @@ var ctx context.Context
 // A defaultSDN config with default/empty values.
 var defaultSDNConfig string
 
-func TestMain(m *testing.M) {
+func TestMain(m *testing.M) { //nolint:staticcheck
 	localConn, localCtx, err := integration_test_utils.CreateSecureConnection()
 	if err != nil {
 		fmt.Println(err.Error())
diff --git a/integration-tests/lab_tests/lab00_test.go b/integration-tests/lab_tests/lab00_test.go
index a2c5be7013cc4e91920da6e4a2bd00af0ac6106d..d641811d1ed7bee3a4133867eaf4ed8c5581320e 100644
--- a/integration-tests/lab_tests/lab00_test.go
+++ b/integration-tests/lab_tests/lab00_test.go
@@ -29,7 +29,7 @@ var ctx context.Context
 // A defaultSDN config with default/empty values.
 var defaultSDNConfig string
 
-func TestMain(m *testing.M) {
+func TestMain(m *testing.M) { //nolint:staticcheck
 	localConn, localCtx, err := integration_test_utils.CreateSecureConnection()
 	if err != nil {
 		fmt.Println(err.Error())
diff --git a/integration-tests/networkElement_tests/networkElement_test.go b/integration-tests/networkElement_tests/networkElement_test.go
index 3765a25b0c256c54babff11bad6266edc144e1f8..99942da0a10af882caafc9079a8809289fa00c74 100644
--- a/integration-tests/networkElement_tests/networkElement_test.go
+++ b/integration-tests/networkElement_tests/networkElement_test.go
@@ -35,7 +35,7 @@ var ctx context.Context
 // A defaultSDN config with default/empty values.
 var defaultSDNConfig string
 
-func TestMain(m *testing.M) {
+func TestMain(m *testing.M) { //nolint:staticcheck
 	localConn, localCtx, err := integration_test_utils.CreateSecureConnection()
 	if err != nil {
 		fmt.Println(err.Error())
diff --git a/integration-tests/rbac_tests/rbac_test.go b/integration-tests/rbac_tests/rbac_test.go
index 44cbc4fc1ed74a797e651adb62c52c8051c90be4..c198a21ac406a6e890373e46e3b9b596ee8f3eb6 100644
--- a/integration-tests/rbac_tests/rbac_test.go
+++ b/integration-tests/rbac_tests/rbac_test.go
@@ -28,7 +28,7 @@ var ctx context.Context
 // A defaultSDN config with default/empty values.
 var defaultSDNConfig string
 
-func TestMain(m *testing.M) {
+func TestMain(m *testing.M) { //nolint:staticcheck
 	localConn, localCtx, err := integration_test_utils.CreateSecureConnection()
 	if err != nil {
 		fmt.Println(err.Error())
diff --git a/integration-tests/topology_tests/topology_test.go b/integration-tests/topology_tests/topology_test.go
index 54c625541f789fc5b616d995dc95dd988e99c70a..603896d395939644c579f080266be251130d463e 100644
--- a/integration-tests/topology_tests/topology_test.go
+++ b/integration-tests/topology_tests/topology_test.go
@@ -20,7 +20,7 @@ var ctx context.Context
 // A defaultSDN config with default/empty values.
 var defaultSDNConfig string
 
-func TestMain(m *testing.M) {
+func TestMain(m *testing.M) { //nolint:staticcheck
 	localConn, localCtx, err := integration_test_utils.CreateSecureConnection()
 	//localConn, localCtx, err := integration_test_utils.CreateConnection()
 	if err != nil {