Bug 473904 - Run official platform tests with Java 8

Corrected spelling in DEBUG print statements
diff --git a/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java b/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java
index 75a8671..63754d1 100644
--- a/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java
+++ b/bundles/org.eclipse.build.tools/src/org/eclipse/releng/generators/TestResultsGenerator.java
@@ -1218,7 +1218,7 @@
 
     public void setTestsConfigExpected(String testsConfigExpected) {
         this.testsConfigExpected = testsConfigExpected;
-        System.out.println("DEBUG: testConfigExpected: " + testsConfigExpected);
+        System.out.println("DEBUG: testsConfigExpected: " + testsConfigExpected);
     }
 
     public String[] getTestsConfig() {
@@ -1238,9 +1238,9 @@
             else {
                testsConfig = testsConfigDefaults; 
             }
-            System.out.println("DEBUG: testConfig array ");
+            System.out.println("DEBUG: testsConfig array ");
             for (int i = 0; i < testsConfig.length; i++) {
-                System.out.println("\tDEBUG: testConfig[" + i + "]: " + testsConfig[i]);
+                System.out.println("\tDEBUG: testsConfig[" + i + "]: " + testsConfig[i]);
             }
         }
         return testsConfig;