diff --git a/ci-scripts/cls_containerize.py b/ci-scripts/cls_containerize.py
index f1694c9855a55f448be68ee6dfa47bbec3a7afe9..42bd62f8355fdfca0ed150169224aaa06cf40456 100644
--- a/ci-scripts/cls_containerize.py
+++ b/ci-scripts/cls_containerize.py
@@ -60,41 +60,21 @@ import cls_oaicitest
 #-----------------------------------------------------------
 IMAGES = ['oai-enb', 'oai-lte-ru', 'oai-lte-ue', 'oai-gnb', 'oai-nr-cuup', 'oai-gnb-aw2s', 'oai-nr-ue', 'oai-gnb-asan', 'oai-nr-ue-asan', 'oai-nr-cuup-asan', 'oai-gnb-aerial', 'oai-gnb-fhi72']
 
-def CreateWorkspace(sshSession, sourcePath, ranRepository, ranCommitID, ranTargetBranch, ranAllowMerge):
+def CreateWorkspace(host, sourcePath, ranRepository, ranCommitID, ranTargetBranch, ranAllowMerge):
 	if ranCommitID == '':
 		logging.error('need ranCommitID in CreateWorkspace()')
-		sys.exit('Insufficient Parameter in CreateWorkspace()')
-
-	sshSession.command(f'rm -rf {sourcePath}', '\$', 10)
-	sshSession.command('mkdir -p ' + sourcePath, '\$', 5)
-	(sshSession.cd(sourcePath) if isinstance(sshSession, cls_cmd.Cmd) else sshSession.command('cd ' + sourcePath, '\$', 5))
-	# Recent version of git (>2.20?) should handle missing .git extension # without problems
-	if ranTargetBranch == 'null':
-		ranTargetBranch = 'develop'
-	baseBranch = re.sub('origin/', '', ranTargetBranch)
-	sshSession.command(f'git clone --filter=blob:none -n -b {baseBranch} {ranRepository} .', '\$', 60)
-	if sshSession.getBefore().count('error') > 0 or sshSession.getBefore().count('error') > 0:
-		sys.exit('error during clone')
-	sshSession.command('git config user.email "jenkins@openairinterface.org"', '\$', 5)
-	sshSession.command('git config user.name "OAI Jenkins"', '\$', 5)
-
-	sshSession.command('mkdir -p cmake_targets/log', '\$', 5)
-	# if the commit ID is provided use it to point to it
-	sshSession.command(f'git checkout -f {ranCommitID}', '\$', 30)
-	if sshSession.getBefore().count(f'HEAD is now at {ranCommitID[:6]}') != 1:
-		sshSession.command('git log --oneline | head -n5', '\$', 5)
-		logging.error(f'problems during checkout, is at: {sshSession.getBefore()}')
-		return False
-	else:
-		logging.debug('successful checkout')
-	# if the branch is not develop, then it is a merge request and we need to do
-	# the potential merge. Note that merge conflicts should already been checked earlier
+		raise ValueError('Insufficient Parameter in CreateWorkspace(): need ranCommitID')
+
+	script = "scripts/create_workspace.sh"
+	options = f"{sourcePath} {ranRepository} {ranCommitID}"
 	if ranAllowMerge:
 		if ranTargetBranch == '':
 			ranTargetBranch = 'develop'
-		logging.debug(f'Merging with the target branch: {ranTargetBranch}')
-		sshSession.command(f'git merge --ff origin/{ranTargetBranch} -m "Temporary merge for CI"', '\$', 30)
-	return True
+		options += f" {ranTargetBranch}"
+	logging.info(f'execute "{script}" with options "{options}" on node {host}')
+	ret = cls_cmd.runScript(host, script, 90, options)
+	logging.debug(f'"{script}" finished with code {ret.returncode}, output:\n{ret.stdout}')
+	return ret.returncode == 0
 
 def CreateTag(ranCommitID, ranBranch, ranAllowMerge):
 	shortCommit = ranCommitID[0:8]
@@ -1000,12 +980,9 @@ class Containerize():
 			HELP.GenericHelp(CONST.Version)
 			sys.exit('Insufficient Parameter')
 		
-		logging.info(f"Running on server {lIpAddr}")
-		sshSession = cls_cmd.getConnection(lIpAddr)
-
-		success = CreateWorkspace(sshSession, lSourcePath, self.ranRepository, self.ranCommitID, self.ranTargetBranch, self.ranAllowMerge)
+		success = CreateWorkspace(lIpAddr, lSourcePath, self.ranRepository, self.ranCommitID, self.ranTargetBranch, self.ranAllowMerge)
 		if success:
-			HTML.CreateHtmlTestRow('N/A', 'OK', CONST.ALL_PROCESSES_OK)
+			HTML.CreateHtmlTestRowQueue('N/A', 'OK', [f"created workspace {lSourcePath}"])
 		else:
 			HTML.CreateHtmlTestRowQueue('N/A', 'KO', ["cannot create workspace"])
 		return success
diff --git a/ci-scripts/cls_static_code_analysis.py b/ci-scripts/cls_static_code_analysis.py
index ab4283d5347ee7272c38756480e7314358601daf..ed5867c4cbdc1496ad6c51e378320d9ea4d2b1fa 100644
--- a/ci-scripts/cls_static_code_analysis.py
+++ b/ci-scripts/cls_static_code_analysis.py
@@ -45,7 +45,6 @@ from multiprocessing import Process, Lock, SimpleQueue
 import helpreadme as HELP
 import constants as CONST
 import cls_cmd
-from cls_containerize import CreateWorkspace
 
 #-----------------------------------------------------------
 # Class Declaration
diff --git a/ci-scripts/scripts/create_workspace.sh b/ci-scripts/scripts/create_workspace.sh
new file mode 100755
index 0000000000000000000000000000000000000000..0dd1f3aca7d379c546bceb65e4af6c502ce7a044
--- /dev/null
+++ b/ci-scripts/scripts/create_workspace.sh
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+function die() {
+  echo $@
+  exit 1
+}
+
+[ $# -ge 3 -a $# -le 4 ] || die "usage: $0 <directory> <repository> <ref> [<merge-ref>]"
+
+set -ex
+
+dir=$1
+repo=$2
+ref=$3
+merge=$4
+
+rm -rf ${dir}
+git clone --filter=blob:none -n -b develop ${repo} ${dir}
+cd ${dir}
+git config user.email "jenkins@openairinterface.org"
+git config user.name "OAI Jenkins"
+git config advice.detachedHead false
+mkdir -p cmake_targets/log
+git checkout -f ${ref}
+[ -n "${merge}" ] && git merge --ff ${merge} -m "Temporary merge for CI"
diff --git a/ci-scripts/xml_files/cluster_image_build.xml b/ci-scripts/xml_files/cluster_image_build.xml
index b389fa7e217cbc0fde5c769c9de862f592c1703a..6810873b1c745ceef88b1cedc0e6b609ded0118b 100644
--- a/ci-scripts/xml_files/cluster_image_build.xml
+++ b/ci-scripts/xml_files/cluster_image_build.xml
@@ -31,7 +31,7 @@
 	<TestCaseExclusionList></TestCaseExclusionList>
 	<testCase id="000002">
 		<class>Create_Workspace</class>
-		<desc>Creating new Workspace</desc>
+		<desc>Create new Workspace</desc>
 	</testCase>
 	<testCase id="000001">
 		<class>Build_Cluster_Image</class>
diff --git a/ci-scripts/xml_files/container_4g_l2sim_proxy.xml b/ci-scripts/xml_files/container_4g_l2sim_proxy.xml
index 792f9939fb48b617dd3d396bfa8570f6085ee21d..cd57a24b6a477654c33c2f3902345b2fabcc79ed 100644
--- a/ci-scripts/xml_files/container_4g_l2sim_proxy.xml
+++ b/ci-scripts/xml_files/container_4g_l2sim_proxy.xml
@@ -31,7 +31,7 @@
         <TestCaseExclusionList></TestCaseExclusionList>
         <testCase id="100001">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>1</eNB_instance>
                 <eNB_serverId>1</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_4g_l2sim_tdd.xml b/ci-scripts/xml_files/container_4g_l2sim_tdd.xml
index 28f55c6d683cb01f7364326fe23870d3da707b99..97a0610efa9cda1ac01bba638405aa00c0f9e0bf 100644
--- a/ci-scripts/xml_files/container_4g_l2sim_tdd.xml
+++ b/ci-scripts/xml_files/container_4g_l2sim_tdd.xml
@@ -49,7 +49,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz.xml b/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz.xml
index c717ba87b9a870dc9b55921fe7dd11cb993b3891..a60a8e2d4dba57a64063e90b24bcf3944109da8d 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz.xml
@@ -45,7 +45,7 @@
         <TestCaseExclusionList></TestCaseExclusionList>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz_noS1.xml b/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz_noS1.xml
index 67f66d2e6ca9a59c6961f34eaf92d92c642a9b72..d5c67c9835bd82f8f45356ad3aff3beafb105f19 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz_noS1.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz_noS1.xml
@@ -48,7 +48,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_fdd_10MHz.xml b/ci-scripts/xml_files/container_4g_rfsim_fdd_10MHz.xml
index f04057d8bfc460c0ad01187ed74d930d5d54f729..50e53c8624eeeff84ad22abd889a0d5f02762689 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_fdd_10MHz.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_fdd_10MHz.xml
@@ -52,7 +52,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_fdd_20MHz.xml b/ci-scripts/xml_files/container_4g_rfsim_fdd_20MHz.xml
index 449341e13eb55e90146a56584103f1f6188ed0fe..12bf5533ba690c5e0ba7a8c8dcb7c29495693cf6 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_fdd_20MHz.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_fdd_20MHz.xml
@@ -52,7 +52,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_fembms.xml b/ci-scripts/xml_files/container_4g_rfsim_fembms.xml
index 7ef304e64819cf8807d9f73fe42c5e38259588db..48f740b873d204377327ac3aaba6ff49e28af00f 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_fembms.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_fembms.xml
@@ -45,7 +45,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_mbms.xml b/ci-scripts/xml_files/container_4g_rfsim_mbms.xml
index 82361921387865b37b936241f2e3e05cc9d14112..4abf69fb3e5905aa75e411292d7d4173a8ad2f57 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_mbms.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_mbms.xml
@@ -45,7 +45,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_tdd_05MHz.xml b/ci-scripts/xml_files/container_4g_rfsim_tdd_05MHz.xml
index eb84827141470c8976a003a9fc33e197c95207ee..fa3c6862b71d9a0086561bde86e3e2a64a37782a 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_tdd_05MHz.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_tdd_05MHz.xml
@@ -52,7 +52,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_e1_rfsim.xml b/ci-scripts/xml_files/container_5g_e1_rfsim.xml
index fa8f47a558e18f3e0192819ea8c3c3a7179f4d4e..bf4cf6ec0434efc667790744ff0c143f6059f15a 100644
--- a/ci-scripts/xml_files/container_5g_e1_rfsim.xml
+++ b/ci-scripts/xml_files/container_5g_e1_rfsim.xml
@@ -45,7 +45,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_f1_rfsim.xml b/ci-scripts/xml_files/container_5g_f1_rfsim.xml
index a246727da1432bdc555a62a843df57e1370887d1..16c02050d2e1d6c4f2a0544bae3a61295b31a2f1 100644
--- a/ci-scripts/xml_files/container_5g_f1_rfsim.xml
+++ b/ci-scripts/xml_files/container_5g_f1_rfsim.xml
@@ -47,7 +47,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_fdd_rfsim.xml b/ci-scripts/xml_files/container_5g_fdd_rfsim.xml
index a1454ed8bd082b646d84cfc1f31139d07481427a..d3640da596d742740d1e9d00c4345826ac0c878f 100644
--- a/ci-scripts/xml_files/container_5g_fdd_rfsim.xml
+++ b/ci-scripts/xml_files/container_5g_fdd_rfsim.xml
@@ -47,7 +47,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_l2sim_tdd.xml b/ci-scripts/xml_files/container_5g_l2sim_tdd.xml
index aa9fd2ece98ccbc9141578df682a70112131e6e6..c3e4662294af389d44403bf20b105aa5b5f82925 100644
--- a/ci-scripts/xml_files/container_5g_l2sim_tdd.xml
+++ b/ci-scripts/xml_files/container_5g_l2sim_tdd.xml
@@ -47,7 +47,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_rfsim.xml b/ci-scripts/xml_files/container_5g_rfsim.xml
index edc9f1f30f0db28c0d568034c8596d48842f9fbf..16eacb02c53563e0f792dccc54ceacfbc07f450e 100644
--- a/ci-scripts/xml_files/container_5g_rfsim.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim.xml
@@ -62,7 +62,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_24prb.xml b/ci-scripts/xml_files/container_5g_rfsim_24prb.xml
index 92f853fa997be2bfc7454d67bc617ec04df93cc1..2e3bbf1d3ae7b72bd2b57593179a1779abe16e4c 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_24prb.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_24prb.xml
@@ -47,7 +47,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_2x2.xml b/ci-scripts/xml_files/container_5g_rfsim_2x2.xml
index 67b2273a68ca731945b6eceb71e673d764155aa6..a18928cc80a12ae4852aa7903f39bc6a0192eb72 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_2x2.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_2x2.xml
@@ -47,7 +47,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_f1_accelleran.xml b/ci-scripts/xml_files/container_5g_rfsim_f1_accelleran.xml
index 07df4a751ee7144db384272c3da0d5cb3a83af89..c8dc1cf9b2de236f00406c37d091b99d3ce839a0 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_f1_accelleran.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_f1_accelleran.xml
@@ -44,7 +44,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_fdd_phytest.xml b/ci-scripts/xml_files/container_5g_rfsim_fdd_phytest.xml
index 8d43480c8eef203d13cf2001d2c29a0fca7bce0e..10081b96068ceb6339d93347887732d69f1225a7 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_fdd_phytest.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_fdd_phytest.xml
@@ -54,7 +54,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_fr2_32prb.xml b/ci-scripts/xml_files/container_5g_rfsim_fr2_32prb.xml
index ee88b9de87372c294eb51ef378f92ca7383cc9cd..b29be08d21f6bbd42f3d8d1cf8b592c155ea8d57 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_fr2_32prb.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_fr2_32prb.xml
@@ -45,7 +45,7 @@
 
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_ntn_geo.xml b/ci-scripts/xml_files/container_5g_rfsim_ntn_geo.xml
index 2a8147140d330e54110aa6e79c5832c8fac3faf3..04bf430f036bb6279e0481ab5ce7e589a6fcf10a 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_ntn_geo.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_ntn_geo.xml
@@ -47,7 +47,7 @@
 
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_sidelink.xml b/ci-scripts/xml_files/container_5g_rfsim_sidelink.xml
index f3be815e301378c7b03e9f8b72429b120f2cc712..d42f8851bb10f53cd3ccbf250c7de0dd6bd8dac1 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_sidelink.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_sidelink.xml
@@ -45,7 +45,7 @@
 
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_tdd_dora.xml b/ci-scripts/xml_files/container_5g_rfsim_tdd_dora.xml
index 3b48f7b90160eea9f3b14837ab946b273b615b04..35834493cc91078f886b844be7254227c8228656 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_tdd_dora.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_tdd_dora.xml
@@ -53,7 +53,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_u0_25prb.xml b/ci-scripts/xml_files/container_5g_rfsim_u0_25prb.xml
index cb4a9cd9f75b0877fdc64096ceee0ddd47f3c32c..38d88b7e5ee5a99480c50b0262dac19e95308e5a 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_u0_25prb.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_u0_25prb.xml
@@ -47,7 +47,7 @@
         </testCase>
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_image_build.xml b/ci-scripts/xml_files/container_image_build.xml
index cde7c7ce609de6080a0ecdc91404dfb1f6bb1959..58b3c00d5ea3c725138973e488c0a880556b0df3 100644
--- a/ci-scripts/xml_files/container_image_build.xml
+++ b/ci-scripts/xml_files/container_image_build.xml
@@ -33,7 +33,7 @@
 
 	<testCase id="800813">
 		<class>Create_Workspace</class>
-		<desc>Creating new Workspace for server 0</desc>
+		<desc>Create new Workspace for server 0</desc>
 		<eNB_instance>0</eNB_instance>
 		<eNB_serverId>0</eNB_serverId>
 	</testCase>
diff --git a/ci-scripts/xml_files/container_image_build_cross.xml b/ci-scripts/xml_files/container_image_build_cross.xml
index c8bc67e51f6acefdbf3dba137bca5a47deadebbf..046ceb54138b02d11e7b91fcf150683118eea690 100644
--- a/ci-scripts/xml_files/container_image_build_cross.xml
+++ b/ci-scripts/xml_files/container_image_build_cross.xml
@@ -31,7 +31,7 @@
 	<TestCaseExclusionList></TestCaseExclusionList>
 	<testCase id="100001">
 		<class>Create_Workspace</class>
-		<desc>Creating new Workspace</desc>
+		<desc>Create new Workspace</desc>
 		<eNB_instance>0</eNB_instance>
 		<eNB_serverId>0</eNB_serverId>
 	</testCase>
diff --git a/ci-scripts/xml_files/container_l2sim_proxy.xml b/ci-scripts/xml_files/container_l2sim_proxy.xml
index 59b09d3ef50e906b50a4eab87c425135a37159c2..ead040de82549e2f1b3da9041b980eac5020f585 100644
--- a/ci-scripts/xml_files/container_l2sim_proxy.xml
+++ b/ci-scripts/xml_files/container_l2sim_proxy.xml
@@ -32,7 +32,7 @@
 
         <testCase id="100001">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace</desc>
+                <desc>Create new Workspace</desc>
                 <eNB_instance>1</eNB_instance>
                 <eNB_serverId>1</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1.xml
index 607c1ebcdd3b4a85d41fd6972abc75f89321b80e..00516269a61589334efc5331da55652b88922f08 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1.xml
@@ -68,7 +68,7 @@ Replaces xml_files/enb_usrp210_band7_test_05mhz_tm1.xml
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_if4_5.xml b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_if4_5.xml
index 53eec11f2005fd385b6e1ffe572512e7c6dffb9f..4ede8e072bb5f5e6c880f43dd1d0ab0a23a1ec8b 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_if4_5.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_if4_5.xml
@@ -67,7 +67,7 @@
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_no_rrc_activity.xml b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_no_rrc_activity.xml
index 669f46f2ec9ab6b6784ab204dd0b4c1f49e7cf19..b9bc7f7a428f8a0489473e5dbcb41d88be9b3bb8 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_no_rrc_activity.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_no_rrc_activity.xml
@@ -60,7 +60,7 @@ Replaces xml_files/enb_usrp210_band7_test_05mhz_tm1_rrc_inactivity_no_flexran.xm
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1.xml
index 2aa378b223828129aba71cab37598b67b63cfef9..958e0a895acbc49d8863c599fdbe8337fc670832 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1.xml
@@ -62,7 +62,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_cdrx.xml b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_cdrx.xml
index 55653d6e4a406ddbcc06da08c160e0d1358bd020..60a9bd0c1618ff18f5679fce4c1d8e0024a6fef4 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_cdrx.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_cdrx.xml
@@ -61,7 +61,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_oaiue.xml b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_oaiue.xml
index cefa6cd5c1bb45b4e2e4093af2ba2117b55922f1..10cd2e89c149deecd7e9ddad2d07a487f1cce9c2 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_oaiue.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_oaiue.xml
@@ -86,7 +86,7 @@
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
@@ -99,7 +99,7 @@
     </testCase>
     <testCase id="800814">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 1</desc>
+        <desc>Create new Workspace for server 1</desc>
         <eNB_instance>1</eNB_instance>
         <eNB_serverId>1</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_20Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_fdd_20Mhz_tm1.xml
index 61fa2dea110bb18c3cd43f2747b6c6d0e88ca891..510d0d3f2e5f8a798f2437a9acc77b931a833f37 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_20Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_20Mhz_tm1.xml
@@ -61,7 +61,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1.xml
index 76bd380f4f1c4ae464e671654027dea63223c134..c8bcde980fcb7504b837c94c7ff5a63e614ee840 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1.xml
@@ -69,7 +69,7 @@ Replaces xml_files/enb_usrp210_band40_test_05mhz_tm1.xml
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1_if4_5.xml b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1_if4_5.xml
index ec280240e064d037c46fcf6a161827446a798ad7..22a86d1f575cc0b7cf5b7bc16b31beeeedf822d5 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1_if4_5.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1_if4_5.xml
@@ -67,7 +67,7 @@
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm2.xml b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm2.xml
index 9111f00365f7804956f8ce9482d0306cab711228..068d4521b27d4f9fcb9965e091d86a0fe3a1f015 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm2.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm2.xml
@@ -59,7 +59,7 @@ Replaces xml_files/enb_usrp210_band40_test_05mhz_tm2.xml
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>  
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_10Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_tdd_10Mhz_tm1.xml
index 7218dcc576db9fdb1d0af55b105302adb612e7c5..570fffef7149353c6fed618eeaaea6f2e8556264 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_10Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_10Mhz_tm1.xml
@@ -60,7 +60,7 @@ Replaces xml_files/enb_usrp210_band40_test_10mhz_tm1.xml
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1.xml
index 4ed3e89e590db380ec90d4f1312e3f01cce6f8e9..49826d782ccb0c60fa4365264249fd71dea64df2 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1.xml
@@ -60,7 +60,7 @@ Replaces xml_files/enb_usrp210_band40_test_20mhz_tm1.xml
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1_default_scheduler.xml b/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1_default_scheduler.xml
index 9ae77ccec3e953e23664d7e734b2336683e14db2..8e47a61a487b224bda9d89891942d8561f3ecdbc 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1_default_scheduler.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1_default_scheduler.xml
@@ -61,7 +61,7 @@ Replaces xml_files/enb_usrp210_band40_test_20mhz_tm1_default_scheduler.xml
     </testCase>
     <testCase id="800813">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace for server 0</desc>
+        <desc>Create new Workspace for server 0</desc>
         <eNB_instance>0</eNB_instance>
         <eNB_serverId>0</eNB_serverId>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm1.xml b/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm1.xml
index cfae0e6188d0a49caf549ad91228c0193bac757b..d1444483014e6cd44fc094224aaa94c536d35cd9 100644
--- a/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm1.xml
@@ -67,7 +67,7 @@
   </testCase>
   <testCase id="800833">
     <class>Create_Workspace</class>
-    <desc>Creating new Workspace</desc>
+    <desc>Create new Workspace</desc>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
diff --git a/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm2.xml b/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm2.xml
index 1df5ea169c3478608b90d6f33b46e7ace1a01a7c..50494d7778cd30217b7b3d965c2bd31f69ffcf79 100644
--- a/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm2.xml
+++ b/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm2.xml
@@ -67,7 +67,7 @@
   </testCase>
   <testCase id="800833">
     <class>Create_Workspace</class>
-    <desc>Creating new Workspace</desc>
+    <desc>Create new Workspace</desc>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
diff --git a/ci-scripts/xml_files/container_nsa_b200_quectel.xml b/ci-scripts/xml_files/container_nsa_b200_quectel.xml
index 7e831b24542894a25460856f94c5f2d65cd8423e..c745cb90aade46be745b56732a6095fe4e3e743d 100644
--- a/ci-scripts/xml_files/container_nsa_b200_quectel.xml
+++ b/ci-scripts/xml_files/container_nsa_b200_quectel.xml
@@ -126,7 +126,7 @@
 	</testCase>
 	<testCase id="800833">
 		<class>Create_Workspace</class>
-		<desc>Creating new Workspace</desc>
+		<desc>Create new Workspace</desc>
 		<eNB_instance>0</eNB_instance>
 		<eNB_serverId>0</eNB_serverId>
 	</testCase>
@@ -139,7 +139,7 @@
 	</testCase>
 	<testCase id="800834">
 		<class>Create_Workspace</class>
-		<desc>Creating new Workspace</desc>
+		<desc>Create new Workspace</desc>
 		<eNB_instance>1</eNB_instance>
 		<eNB_serverId>1</eNB_serverId>
 	</testCase>
diff --git a/ci-scripts/xml_files/container_sa_aerial_quectel.xml b/ci-scripts/xml_files/container_sa_aerial_quectel.xml
index 43fdf4b65b29b0883b173e5913e017196fed1540..3f49e5fa8d586adea845cc0eeb88eb067dd6dd2a 100644
--- a/ci-scripts/xml_files/container_sa_aerial_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_aerial_quectel.xml
@@ -49,7 +49,7 @@
 
         <testCase id="800813">
                 <class>Create_Workspace</class>
-                <desc>Creating new Workspace for server 0</desc>
+                <desc>Create new Workspace for server 0</desc>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
diff --git a/ci-scripts/xml_files/container_sa_aw2s_asue.xml b/ci-scripts/xml_files/container_sa_aw2s_asue.xml
index 3929687f1b9d27fb888b63e84e27dbcf45e6778a..0e4e967c52ff84222d6d92b76f4093c76960cf5a 100644
--- a/ci-scripts/xml_files/container_sa_aw2s_asue.xml
+++ b/ci-scripts/xml_files/container_sa_aw2s_asue.xml
@@ -68,7 +68,7 @@
   </testCase>
   <testCase id="800813">
     <class>Create_Workspace</class>
-    <desc>Creating new Workspace</desc>
+    <desc>Create new Workspace</desc>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
diff --git a/ci-scripts/xml_files/container_sa_b200_quectel.xml b/ci-scripts/xml_files/container_sa_b200_quectel.xml
index 4776bd784e523d77ee3188726cd74769139175c6..a683c07a035a728faacc2320c544ea4928327ea7 100644
--- a/ci-scripts/xml_files/container_sa_b200_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_b200_quectel.xml
@@ -100,7 +100,7 @@
   </testCase>
   <testCase id="800813">
     <class>Create_Workspace</class>
-    <desc>Creating new Workspace for server 0</desc>
+    <desc>Create new Workspace for server 0</desc>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
diff --git a/ci-scripts/xml_files/container_sa_e1_b200_quectel.xml b/ci-scripts/xml_files/container_sa_e1_b200_quectel.xml
index 4e4eab92c17798450f87f05fd2d52cb575d8dab6..563167a2ddc76af1bd73d725914085d47008f5b0 100644
--- a/ci-scripts/xml_files/container_sa_e1_b200_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_e1_b200_quectel.xml
@@ -84,7 +84,7 @@
   </testCase>
   <testCase id="800813">
     <class>Create_Workspace</class>
-    <desc>Creating new Workspace</desc>
+    <desc>Create new Workspace</desc>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
diff --git a/ci-scripts/xml_files/container_sa_f1_b200_quectel.xml b/ci-scripts/xml_files/container_sa_f1_b200_quectel.xml
index 4cce964633e6419903461b94f456a8bbbe279bc6..36adc62777f3055b08da6c8bdc5fbe3f1778daa9 100644
--- a/ci-scripts/xml_files/container_sa_f1_b200_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_f1_b200_quectel.xml
@@ -83,7 +83,7 @@
   </testCase>
   <testCase id="800813">
     <class>Create_Workspace</class>
-    <desc>Creating new Workspace</desc>
+    <desc>Create new Workspace</desc>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
diff --git a/ci-scripts/xml_files/container_sa_fhi72_vvdn_up2.xml b/ci-scripts/xml_files/container_sa_fhi72_vvdn_up2.xml
index b81ef51d5ba7837ce9bb2b9ad66e6919d275de8f..527bc70082fad116793d4b5d3a5c40ee8d3b4b7e 100644
--- a/ci-scripts/xml_files/container_sa_fhi72_vvdn_up2.xml
+++ b/ci-scripts/xml_files/container_sa_fhi72_vvdn_up2.xml
@@ -60,7 +60,7 @@
   </testCase>
   <testCase id="800813">
     <class>Create_Workspace</class>
-    <desc>Creating new Workspace for server 0</desc>
+    <desc>Create new Workspace for server 0</desc>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
diff --git a/ci-scripts/xml_files/container_sa_n310_2X2_100MHz_quectel.xml b/ci-scripts/xml_files/container_sa_n310_2X2_100MHz_quectel.xml
index c713e5a431dccdb65fbe10fe23233fa63dbc65a2..6b7c8a92ec63214ac005c51dbea9e35b9c494e54 100644
--- a/ci-scripts/xml_files/container_sa_n310_2X2_100MHz_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_n310_2X2_100MHz_quectel.xml
@@ -79,7 +79,7 @@
   </testCase>
   <testCase id="800813">
     <class>Create_Workspace</class>
-    <desc>Creating new Workspace</desc>
+    <desc>Create new Workspace</desc>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
diff --git a/ci-scripts/xml_files/container_sa_n310_2X2_60MHz_quectel.xml b/ci-scripts/xml_files/container_sa_n310_2X2_60MHz_quectel.xml
index fc0baadaca4b4f9899e4008638790700ea8278f3..c94c30a7b234659b8957135e5ffa2352a9f47b61 100644
--- a/ci-scripts/xml_files/container_sa_n310_2X2_60MHz_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_n310_2X2_60MHz_quectel.xml
@@ -79,7 +79,7 @@
   </testCase>
   <testCase id="800813">
       <class>Create_Workspace</class>
-      <desc>Creating new Workspace</desc>
+      <desc>Create new Workspace</desc>
       <eNB_instance>0</eNB_instance>
       <eNB_serverId>0</eNB_serverId>
   </testCase>
diff --git a/ci-scripts/xml_files/container_sa_n310_nrue.xml b/ci-scripts/xml_files/container_sa_n310_nrue.xml
index f00a452403a47d088eefcd68dff1f98683ffc1b6..a358bbf5f843498dbcca3a3563a2ef6e07052853 100644
--- a/ci-scripts/xml_files/container_sa_n310_nrue.xml
+++ b/ci-scripts/xml_files/container_sa_n310_nrue.xml
@@ -70,7 +70,7 @@
   </testCase>
   <testCase id="800813">
     <class>Create_Workspace</class>
-    <desc>Creating new Workspace</desc>
+    <desc>Create new Workspace</desc>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
@@ -83,7 +83,7 @@
   </testCase>
   <testCase id="800814">
     <class>Create_Workspace</class>
-    <desc>Creating new Workspace</desc>
+    <desc>Create new Workspace</desc>
     <eNB_instance>1</eNB_instance>
     <eNB_serverId>1</eNB_serverId>
   </testCase>
diff --git a/ci-scripts/xml_files/container_sa_sc_b200_quectel.xml b/ci-scripts/xml_files/container_sa_sc_b200_quectel.xml
index d0dc59f3ccf84d25ec5a69be20a556e77ac7f9e4..6831be6949556d74a865d7bc9a5f3f22774d3c64 100644
--- a/ci-scripts/xml_files/container_sa_sc_b200_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_sc_b200_quectel.xml
@@ -94,7 +94,7 @@
   </testCase>
   <testCase id="800813">
     <class>Create_Workspace</class>
-    <desc>Creating new Workspace</desc>
+    <desc>Create new Workspace</desc>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
diff --git a/ci-scripts/xml_files/cppcheck.xml b/ci-scripts/xml_files/cppcheck.xml
index 6ec7a58e55da1567eaeaae60b116757d1241dd28..18d8760b0d937dfbaf09fc7f0d281a0f194f9f2c 100644
--- a/ci-scripts/xml_files/cppcheck.xml
+++ b/ci-scripts/xml_files/cppcheck.xml
@@ -31,7 +31,7 @@
 	<TestCaseExclusionList></TestCaseExclusionList>
     <testCase id="000002">
         <class>Create_Workspace</class>
-        <desc>Creating new Workspace</desc>
+        <desc>Create new Workspace</desc>
     </testCase>
 	<testCase id="000001">
 		<class>Cppcheck_Analysis</class>
diff --git a/ci-scripts/xml_files/gnb_usrp_build.xml b/ci-scripts/xml_files/gnb_usrp_build.xml
index da0c321956a1b289df778e7cb74fca55467c6f12..81c49e87d91c4e6d8ab7a37fa7a28cdda5c5bb92 100644
--- a/ci-scripts/xml_files/gnb_usrp_build.xml
+++ b/ci-scripts/xml_files/gnb_usrp_build.xml
@@ -33,7 +33,7 @@
 
 	<testCase id="000000">
 		<class>Create_Workspace</class>
-		<desc>Creating new Workspace</desc>
+		<desc>Create new Workspace</desc>
 	</testCase>
 
 	<testCase id="010101">