Fixed passing git varible from gating pipeline

Change-Id: Iaf33aff5bd7fe371d3b6b6e3c5f1ce45b9e70b66
diff --git a/gating-pipeline.groovy b/gating-pipeline.groovy
index 4efb430..8cc5031 100644
--- a/gating-pipeline.groovy
+++ b/gating-pipeline.groovy
@@ -24,7 +24,7 @@
           if (_jobExists(testJob)) {
             common.infoMsg("Test job ${testJob} found, running")
             build job: testJob, parameters: [
-              [$class: 'StringParameterValue', name: 'DEFAULT_GIT_URL', value: "${GERRIT_SCHEME}://${GERRIT_NAME}@${GERRIT_HOST}:${GERRIT_PORT}/${GERRIT_PROJECT}.git"],
+              [$class: 'StringParameterValue', name: 'DEFAULT_GIT_URL', value: "${GERRIT_SCHEME}://${GERRIT_NAME}@${GERRIT_HOST}:${GERRIT_PORT}/${GERRIT_PROJECT}"],
               [$class: 'StringParameterValue', name: 'DEFAULT_GIT_REF', value: GERRIT_REFSPEC]
             ]
           } else {