diff --git a/Jenkinsfile b/Jenkinsfile
index 6d19d1f7077a6a477c5b919ea823085dbf47d271..5dc7003e78e238ae41051431b5b00630d4b43644 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -185,7 +185,16 @@ def pushOstreeRepo(architecture, type, board) {
     rm -rf ${repo}""")
 }
 
-def runTestsJobs(image_name, profile_name, version) {
+def submitTests(architecture, type, board, ostree = false) {
+  def image_name = imageName(architecture, type, board, ostree)
+  def version = env.PIPELINE_VERSION
+
+  def name = osname
+  if(ostree){
+    name = "${osname}_ostree"
+  }
+  def profile_name = "${name}-${type}-${architecture}-${board}"
+
   dir ("apertis-tests") {
     git(url: test_repo_url,
         poll: false,
@@ -207,18 +216,6 @@ def runTestsJobs(image_name, profile_name, version) {
   }
 }
 
-def submitTests(architecture, type, board, ostree = false) {
-  def image_name = imageName(architecture, type, board, ostree)
-
-  def name = osname
-  if(ostree){
-    name = "${osname}_ostree"
-  }
-  def profile_name = "${name}-${type}-${architecture}-${board}"
-
-  runTestsJobs (image_name, profile_name, env.PIPELINE_VERSION)
-}
-
 def buildOStree(architecture, type, board, debosarguments = "", repo = "repo") {
   def image_name = imageName(architecture, type, board, true)
   def branch = "${osname}/${release}/${architecture}-${board}/${type}"