Fixed compiler warning of using a deprecated method
diff --git a/tests/org.eclipse.datatools.connectivity.oda.profile.tests/META-INF/MANIFEST.MF b/tests/org.eclipse.datatools.connectivity.oda.profile.tests/META-INF/MANIFEST.MF
index b8af198..b30edc2 100644
--- a/tests/org.eclipse.datatools.connectivity.oda.profile.tests/META-INF/MANIFEST.MF
+++ b/tests/org.eclipse.datatools.connectivity.oda.profile.tests/META-INF/MANIFEST.MF
@@ -2,10 +2,11 @@
 Bundle-ManifestVersion: 2
 Bundle-Name: DTP ODA Profile Tests Suite
 Bundle-SymbolicName: org.eclipse.datatools.connectivity.oda.profile.tests
-Bundle-Version: 3.0.3.200611151
+Bundle-Version: 3.0.4.200702081
 Bundle-Localization: plugin
 Require-Bundle: org.junit;bundle-version="[3.8.1,4.0.0)",
- org.eclipse.datatools.connectivity.oda.profile;bundle-version="[3.0.3,4.0.0)",
- org.eclipse.datatools.connectivity.oda.consumer;bundle-version="[3.0.2,4.0.0)",
+ org.eclipse.datatools.connectivity.oda.profile;bundle-version="[3.0.4,4.0.0)",
+ org.eclipse.datatools.connectivity.oda.consumer;bundle-version="[3.0.4,4.0.0)",
  org.eclipse.core.runtime;bundle-version="[3.2.0,4.0.0)"
 Bundle-Vendor: Eclipse.org
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
diff --git a/tests/org.eclipse.datatools.connectivity.oda.profile.tests/src/org/eclipse/datatools/connectivity/oda/profile/tests/ProfileExplorerPluginTest.java b/tests/org.eclipse.datatools.connectivity.oda.profile.tests/src/org/eclipse/datatools/connectivity/oda/profile/tests/ProfileExplorerPluginTest.java
index f71db9a..6519b50 100644
--- a/tests/org.eclipse.datatools.connectivity.oda.profile.tests/src/org/eclipse/datatools/connectivity/oda/profile/tests/ProfileExplorerPluginTest.java
+++ b/tests/org.eclipse.datatools.connectivity.oda.profile.tests/src/org/eclipse/datatools/connectivity/oda/profile/tests/ProfileExplorerPluginTest.java
@@ -1,6 +1,6 @@
 /*
  *************************************************************************
- * Copyright (c) 2005, 2006 Actuate Corporation.
+ * Copyright (c) 2005, 2007 Actuate Corporation.
  * 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
@@ -24,6 +24,7 @@
 import java.util.Map;
 import java.util.Properties;
 
+import org.eclipse.core.runtime.FileLocator;
 import org.eclipse.core.runtime.IPath;
 import org.eclipse.core.runtime.Path;
 import org.eclipse.core.runtime.Platform;
@@ -207,6 +208,6 @@
     {
         Bundle bundle = Platform.getBundle( getClass().getPackage().getName() );
         URL url = bundle.getEntry( "src" );
-        return Platform.asLocalURL( url ).getPath();
+        return FileLocator.toFileURL( url ).getPath();
     }
 }