Skip to content

Commit

Permalink
Fixed test so it conforms to the new API for open multiple files.
Browse files Browse the repository at this point in the history
  • Loading branch information
goglepox committed Mar 27, 2012
1 parent d7a986a commit 6dbb1ce
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -56,7 +56,7 @@ public void testOpenListIFile() throws CoreException {
.getRoot()
.getFile( new Path(filePath) );
Assert.assertTrue(savedFile.exists());
ui.open( new ArrayList<IFile>() {{add(savedFile);}});
ui.openFiles( new ArrayList<IFile>() {{add(savedFile);}});
project.delete(true, new NullProgressMonitor());
}

Expand Down

0 comments on commit 6dbb1ce

Please sign in to comment.