From c93e31fa63fb50c375c0a0fb320f5cf3f4646039 Mon Sep 17 00:00:00 2001 From: ahmedabu98 Date: Thu, 6 Apr 2023 15:19:12 +0000 Subject: [PATCH] use double quotes when using embedded values --- .test-infra/jenkins/job_PreCommit_Portable_Python.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.test-infra/jenkins/job_PreCommit_Portable_Python.groovy b/.test-infra/jenkins/job_PreCommit_Portable_Python.groovy index 1f502bef5bc1..4c4491a3e0c2 100644 --- a/.test-infra/jenkins/job_PreCommit_Portable_Python.groovy +++ b/.test-infra/jenkins/job_PreCommit_Portable_Python.groovy @@ -47,12 +47,12 @@ builder.build { steps { gradle { rootBuildScriptDir(commonJobProperties.checkoutDir) - tasks(':sdks:python:test-suites:portable:py${lowestSupported}:preCommitPy${lowestSupported}') + tasks(":sdks:python:test-suites:portable:py${lowestSupported}:preCommitPy${lowestSupported}") commonJobProperties.setGradleSwitches(delegate) } gradle { rootBuildScriptDir(commonJobProperties.checkoutDir) - tasks(':sdks:python:test-suites:portable:${highestSupported}:preCommitPy${highestSupported}') + tasks(":sdks:python:test-suites:portable:${highestSupported}:preCommitPy${highestSupported}") commonJobProperties.setGradleSwitches(delegate) } }