Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2010-03-01 14:11:30 +0000
committerThomas Watson2010-03-01 14:11:30 +0000
commit303a82cf970ca078f0bbe9ca79f1184b69af3feb (patch)
tree376ff719fd91f662a8e7a96f1fe3fbb7179e9042 /bundles
parent12e0ae91ab62caaa56e92e7b99b1481d72302784 (diff)
downloadrt.equinox.framework-303a82cf970ca078f0bbe9ca79f1184b69af3feb.tar.gz
rt.equinox.framework-303a82cf970ca078f0bbe9ca79f1184b69af3feb.tar.xz
rt.equinox.framework-303a82cf970ca078f0bbe9ca79f1184b69af3feb.zip
bug 303907 - Update the deault WS on Mac to be Cocoa
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/eclipseadaptor/EnvironmentInfoTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/eclipseadaptor/EnvironmentInfoTest.java b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/eclipseadaptor/EnvironmentInfoTest.java
index 24d7e4f4b..d26bd7bbe 100644
--- a/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/eclipseadaptor/EnvironmentInfoTest.java
+++ b/bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/eclipseadaptor/EnvironmentInfoTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2004, 2009 IBM Corporation and others.
+ * Copyright (c) 2004, 2010 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
@@ -49,7 +49,7 @@ public class EnvironmentInfoTest extends TestCase {
assertEquals("1.0", Constants.OS_MACOSX, EclipseEnvironmentInfo.guessOS("Mac OS"));
assertEquals("1.1", Constants.OS_MACOSX, EclipseEnvironmentInfo.guessOS("Mac OS X"));
assertEquals("1.2", Constants.OS_MACOSX, EclipseEnvironmentInfo.guessOS("mac os x"));
- assertEquals("2.0", Constants.WS_CARBON, EclipseEnvironmentInfo.guessWS(Constants.OS_MACOSX));
+ assertEquals("2.0", Constants.WS_COCOA, EclipseEnvironmentInfo.guessWS(Constants.OS_MACOSX));
}
public void testQNX() {

Back to the top