Fix custom variable passing to tempest container

Commit e0ed6cac5c468952923dd8e655127a7295580ec6 has improved
quotation and this has broken run tempest method by replacing of
double quotes.

Change-Id: Ic918951257118b7772e29592d448c5eb98ab32e4
Related-Prod: https://mirantis.jira.com/browse/PROD-15932
diff --git a/src/com/mirantis/mk/Test.groovy b/src/com/mirantis/mk/Test.groovy
index 0355544..0c4f5f0 100644
--- a/src/com/mirantis/mk/Test.groovy
+++ b/src/com/mirantis/mk/Test.groovy
@@ -69,7 +69,7 @@
                                     "-e SOURCE_FILE=${sourceFile} " +
                                     "-e LOG_DIR=${logDir} " +
                                     "-e SET=${set} " +
-                                    "-e CUSTOM=\"${custom}\" " +
+                                    "-e CUSTOM='${custom}' " +
                                     "-e CONCURRENCY=${concurrency} " +
                                     "-e TEMPEST_CONF=${tempestConf} " +
                                     "-e SKIP_LIST=${skipList} " +