Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Chandra2015-03-13 13:20:41 +0000
committerVikas Chandra2015-03-13 13:20:41 +0000
commit05ba744d942c4374832c583ed1ea1ddaca0d1eda (patch)
tree06c83e142c69aff95f1352b84b343b6235b9929f
parentc8bf2e45866e29a04df7cc83ceb54b69f2e34b14 (diff)
downloadeclipse.pde.ui-05ba744d942c4374832c583ed1ea1ddaca0d1eda.tar.gz
eclipse.pde.ui-05ba744d942c4374832c583ed1ea1ddaca0d1eda.tar.xz
eclipse.pde.ui-05ba744d942c4374832c583ed1ea1ddaca0d1eda.zip
Bug 461800 - 4 api tool test fail in nightly build
-rw-r--r--apitools/org.eclipse.pde.api.tools.tests/src/org/eclipse/pde/api/tools/model/tests/TestSuiteHelper.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/apitools/org.eclipse.pde.api.tools.tests/src/org/eclipse/pde/api/tools/model/tests/TestSuiteHelper.java b/apitools/org.eclipse.pde.api.tools.tests/src/org/eclipse/pde/api/tools/model/tests/TestSuiteHelper.java
index 6e9bdfc196..29bde802a0 100644
--- a/apitools/org.eclipse.pde.api.tools.tests/src/org/eclipse/pde/api/tools/model/tests/TestSuiteHelper.java
+++ b/apitools/org.eclipse.pde.api.tools.tests/src/org/eclipse/pde/api/tools/model/tests/TestSuiteHelper.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2014 IBM Corporation and others.
+ * Copyright (c) 2007, 2015 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -412,7 +412,7 @@ public class TestSuiteHelper {
public static File getEEDescriptionFile() {
String eePath = System.getProperty("ee.file"); //$NON-NLS-1$
if (eePath == null) {
- // generate a fake 1.5 ee file
+ // generate a fake 1.7 ee file
File fakeEEFile = null;
PrintWriter writer = null;
try {
@@ -422,8 +422,8 @@ public class TestSuiteHelper {
writer.println(System.getProperty("java.home")); //$NON-NLS-1$
writer.print("-Dee.bootclasspath="); //$NON-NLS-1$
writer.println(org.eclipse.pde.api.tools.internal.util.Util.getJavaClassLibsAsString());
- writer.println("-Dee.language.level=1.6"); //$NON-NLS-1$
- writer.println("-Dee.class.library.level=JavaSE-1.6"); //$NON-NLS-1$
+ writer.println("-Dee.language.level=1.7"); //$NON-NLS-1$
+ writer.println("-Dee.class.library.level=JavaSE-1.7"); //$NON-NLS-1$
writer.flush();
} catch (IOException e) {
// ignore

Back to the top