1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-15 13:05:22 +02:00

[tests] Make RSEFileStoreTest compatible with Eclipse 3.3

This commit is contained in:
Martin Oberhuber 2008-06-04 09:38:23 +00:00
parent 7eedb21637
commit 76af90a45e

View file

@ -513,7 +513,8 @@ public class RSEFileStoreTest extends FileServiceBaseTest {
// Neg: Create deep folder with EFS.SHALLOW // Neg: Create deep folder with EFS.SHALLOW
exceptionThrown = false; exceptionThrown = false;
IFileStore store = treeStore.getFileStore(new Path("foo/bar/baz")); //IFileStore store = treeStore.getFileStore(new Path("foo/bar/baz"));
IFileStore store = treeStore.getChild("foo").getChild("bar").getChild("baz");
try { try {
store.mkdir(EFS.SHALLOW, getDefaultProgressMonitor()); store.mkdir(EFS.SHALLOW, getDefaultProgressMonitor());
} catch (CoreException ce) { } catch (CoreException ce) {