Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--production/testScripts/runTests2.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/production/testScripts/runTests2.xml b/production/testScripts/runTests2.xml
index 1b5199808..7bde22d00 100644
--- a/production/testScripts/runTests2.xml
+++ b/production/testScripts/runTests2.xml
@@ -949,14 +949,14 @@
doing there, if already done. -->
<target name="unzipTestFramework">
<fail unless="testDir" />
- <fail unless="buildId" />
+ <fail unless="buildIdToUse" />
<property
name="testResults"
value="${testDir}/testresults" />
<property
name="testFramework"
- value="${testDir}/eclipse-Automated-Tests-${buildId}.zip" />
+ value="${testDir}/eclipse-Automated-Tests-${buildIdToUse}.zip" />
<condition property="testFrameworkExists">
<available file="${testFramework}" />

Back to the top